summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BUILD.gn4
-rw-r--r--core/fpdfapi/edit/cpdf_creator.cpp2
-rw-r--r--core/fxcrt/fx_guid.cpp2
-rw-r--r--core/fxcrt/fx_random.cpp (renamed from core/fxcrt/fx_rand.cpp)2
-rw-r--r--core/fxcrt/fx_random.h (renamed from core/fxcrt/fx_rand.h)6
5 files changed, 8 insertions, 8 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 3d3917fe70..e66517e1a9 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -843,8 +843,8 @@ static_library("fxcrt") {
"core/fxcrt/fx_extension.h",
"core/fxcrt/fx_memory.cpp",
"core/fxcrt/fx_memory.h",
- "core/fxcrt/fx_rand.cpp",
- "core/fxcrt/fx_rand.h",
+ "core/fxcrt/fx_random.cpp",
+ "core/fxcrt/fx_random.h",
"core/fxcrt/fx_safe_types.h",
"core/fxcrt/fx_stream.cpp",
"core/fxcrt/fx_stream.h",
diff --git a/core/fpdfapi/edit/cpdf_creator.cpp b/core/fpdfapi/edit/cpdf_creator.cpp
index 7d9f2d0cc8..38a21ba0cb 100644
--- a/core/fpdfapi/edit/cpdf_creator.cpp
+++ b/core/fpdfapi/edit/cpdf_creator.cpp
@@ -19,7 +19,7 @@
#include "core/fpdfapi/parser/cpdf_string.h"
#include "core/fpdfapi/parser/fpdf_parser_decode.h"
#include "core/fxcrt/fx_extension.h"
-#include "core/fxcrt/fx_rand.h"
+#include "core/fxcrt/fx_random.h"
namespace {
diff --git a/core/fxcrt/fx_guid.cpp b/core/fxcrt/fx_guid.cpp
index 6f130f9d46..4d3a4e9a5f 100644
--- a/core/fxcrt/fx_guid.cpp
+++ b/core/fxcrt/fx_guid.cpp
@@ -7,7 +7,7 @@
#include "core/fxcrt/fx_guid.h"
#include "core/fxcrt/fx_extension.h"
-#include "core/fxcrt/fx_rand.h"
+#include "core/fxcrt/fx_random.h"
void FX_GUID_CreateV4(FX_GUID* pGUID) {
FX_Random_GenerateMT((uint32_t*)pGUID, 4);
diff --git a/core/fxcrt/fx_rand.cpp b/core/fxcrt/fx_random.cpp
index 7a0c3e4d9b..4d8fc0efcf 100644
--- a/core/fxcrt/fx_rand.cpp
+++ b/core/fxcrt/fx_random.cpp
@@ -4,7 +4,7 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#include "core/fxcrt/fx_rand.h"
+#include "core/fxcrt/fx_random.h"
#include "core/fxcrt/fx_memory.h"
#include "core/fxcrt/fx_string.h"
diff --git a/core/fxcrt/fx_rand.h b/core/fxcrt/fx_random.h
index db5f48fee3..c07ef797cf 100644
--- a/core/fxcrt/fx_rand.h
+++ b/core/fxcrt/fx_random.h
@@ -4,8 +4,8 @@
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
-#ifndef CORE_FXCRT_FX_RAND_H_
-#define CORE_FXCRT_FX_RAND_H_
+#ifndef CORE_FXCRT_FX_RANDOM_H_
+#define CORE_FXCRT_FX_RANDOM_H_
#include <stdint.h>
@@ -15,4 +15,4 @@ 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_RAND_H_
+#endif // CORE_FXCRT_FX_RANDOM_H_