diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-09-06 09:37:59 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-09-06 13:47:18 +0000 |
commit | 3ef61c73a97b31000a21e323e04ad5397e517c4c (patch) | |
tree | 516534f41936adbf4eb2f1ba447508847ef98dac /core/fxcrt/fx_guid.h | |
parent | 555b31faa192c7a85c84979bea28d4914e93c784 (diff) | |
download | pdfium-3ef61c73a97b31000a21e323e04ad5397e517c4c.tar.xz |
GUID cleanup
This CL removes fx_guid and inlines into CXFA_FM2JSContext as needed.
Change-Id: I08a1f03fd4be46730eee24ab73b8b5c0daf9cd7d
Reviewed-on: https://pdfium-review.googlesource.com/13094
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'core/fxcrt/fx_guid.h')
-rw-r--r-- | core/fxcrt/fx_guid.h | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/core/fxcrt/fx_guid.h b/core/fxcrt/fx_guid.h deleted file mode 100644 index e80efc4ca1..0000000000 --- a/core/fxcrt/fx_guid.h +++ /dev/null @@ -1,22 +0,0 @@ -// Copyright 2017 PDFium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com - -#ifndef CORE_FXCRT_FX_GUID_H_ -#define CORE_FXCRT_FX_GUID_H_ - -#include "core/fxcrt/fx_string.h" - -struct FX_GUID { - uint32_t data1; - uint16_t data2; - uint16_t data3; - uint8_t data4[8]; -}; - -void FX_GUID_CreateV4(FX_GUID* pGUID); -CFX_ByteString FX_GUID_ToString(const FX_GUID* pGUID, bool bSeparator = true); - -#endif // CORE_FXCRT_FX_GUID_H_ |