| Index: core/src/fxcrt/fx_basic_bstring.cpp
|
| diff --git a/core/src/fxcrt/fx_basic_bstring.cpp b/core/src/fxcrt/fx_basic_bstring.cpp
|
| index 0d4f860b3290698e2dc8f5f59d604850465eb5bd..39104e29f6c010c64885be20f2ef3b3f983ebbaa 100644
|
| --- a/core/src/fxcrt/fx_basic_bstring.cpp
|
| +++ b/core/src/fxcrt/fx_basic_bstring.cpp
|
| @@ -5,7 +5,7 @@
|
| // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
|
|
| #include "../../include/fxcrt/fx_basic.h"
|
| -#include "../../../third_party/numerics/safe_math.h"
|
| +#include "../../../third_party/base/numerics/safe_math.h"
|
|
|
| static int _Buffer_itoa(char* buf, int i, FX_DWORD flags)
|
| {
|
| @@ -52,7 +52,7 @@ static CFX_StringData* FX_AllocString(int nLen)
|
| if (nLen == 0 || nLen < 0) {
|
| return NULL;
|
| }
|
| - base::CheckedNumeric<int> nSize = nLen;
|
| + pdfium::base::CheckedNumeric<int> nSize = nLen;
|
| nSize += sizeof(long) * 3 + 1;
|
| CFX_StringData* pData = (CFX_StringData*)FX_Alloc(FX_BYTE, nSize.ValueOrDie());
|
| if (!pData) {
|
|
|