| Index: fpdfsdk/src/fsdk_mgr.cpp
|
| diff --git a/fpdfsdk/src/fsdk_mgr.cpp b/fpdfsdk/src/fsdk_mgr.cpp
|
| index e27823bea2ece97d56aa7d2a6aecce85aeb4cc71..8ecc602b09c0097283bc098b9efc8c8103dddda4 100644
|
| --- a/fpdfsdk/src/fsdk_mgr.cpp
|
| +++ b/fpdfsdk/src/fsdk_mgr.cpp
|
| @@ -5,6 +5,7 @@
|
| // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
|
|
| #include <algorithm>
|
| +#include <memory>
|
|
|
| #include "fpdfsdk/include/fsdk_mgr.h"
|
|
|
| @@ -12,7 +13,6 @@
|
| #include "fpdfsdk/include/fsdk_define.h"
|
| #include "fpdfsdk/include/javascript/IJavaScript.h"
|
| #include "public/fpdf_ext.h"
|
| -#include "third_party/base/nonstd_unique_ptr.h"
|
| #include "third_party/base/stl_util.h"
|
|
|
| #ifdef PDF_ENABLE_XFA
|
| @@ -285,7 +285,7 @@ CFX_WideString CPDFDoc_Environment::JS_fieldBrowse() {
|
| if (nRequiredLen <= 0)
|
| return L"";
|
|
|
| - nonstd::unique_ptr<char[]> pBuff(new char[nRequiredLen]);
|
| + std::unique_ptr<char[]> pBuff(new char[nRequiredLen]);
|
| memset(pBuff.get(), 0, nRequiredLen);
|
| const int nActualLen = m_pInfo->m_pJsPlatform->Field_browse(
|
| m_pInfo->m_pJsPlatform, pBuff.get(), nRequiredLen);
|
| @@ -308,7 +308,7 @@ CFX_WideString CPDFDoc_Environment::JS_docGetFilePath() {
|
| if (nRequiredLen <= 0)
|
| return L"";
|
|
|
| - nonstd::unique_ptr<char[]> pBuff(new char[nRequiredLen]);
|
| + std::unique_ptr<char[]> pBuff(new char[nRequiredLen]);
|
| memset(pBuff.get(), 0, nRequiredLen);
|
| const int nActualLen = m_pInfo->m_pJsPlatform->Doc_getFilePath(
|
| m_pInfo->m_pJsPlatform, pBuff.get(), nRequiredLen);
|
|
|