| Index: xfa/src/fxgraphics/src/fx_graphics.cpp
|
| diff --git a/xfa/src/fxgraphics/src/fx_graphics.cpp b/xfa/src/fxgraphics/src/fx_graphics.cpp
|
| index d983b5d6f8f70d4e3c2e79481c4df1dad335e6f5..69069817aa02de5aa944778da1d1129752dfed79 100644
|
| --- a/xfa/src/fxgraphics/src/fx_graphics.cpp
|
| +++ b/xfa/src/fxgraphics/src/fx_graphics.cpp
|
| @@ -4,9 +4,10 @@
|
|
|
| // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
|
|
|
| +#include <memory>
|
| +
|
| #include "fx_path_generator.h"
|
| #include "pre.h"
|
| -#include "third_party/base/nonstd_unique_ptr.h"
|
|
|
| class CAGG_Graphics {
|
| public:
|
| @@ -1099,7 +1100,7 @@ FX_ERR CFX_Graphics::CalcTextInfo(const CFX_WideString& text,
|
| FX_DWORD* charCodes,
|
| FXTEXT_CHARPOS* charPos,
|
| CFX_RectF& rect) {
|
| - nonstd::unique_ptr<CFX_UnicodeEncoding> encoding(
|
| + std::unique_ptr<CFX_UnicodeEncoding> encoding(
|
| new CFX_UnicodeEncoding(_info._font));
|
| int32_t length = text.GetLength();
|
| FX_FLOAT penX = (FX_FLOAT)rect.left;
|
|
|