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_random.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_random.h')
-rw-r--r-- | core/fxcrt/fx_random.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fxcrt/fx_random.h b/core/fxcrt/fx_random.h index c07ef797cf..52d514ba53 100644 --- a/core/fxcrt/fx_random.h +++ b/core/fxcrt/fx_random.h @@ -12,7 +12,7 @@ void* FX_Random_MT_Start(uint32_t dwSeed); void FX_Random_MT_Close(void* pContext); uint32_t FX_Random_MT_Generate(void* pContext); -void FX_Random_GenerateBase(uint32_t* pBuffer, int32_t iCount); + void FX_Random_GenerateMT(uint32_t* pBuffer, int32_t iCount); #endif // CORE_FXCRT_FX_RANDOM_H_ |