| Index: core/src/fxcodec/jbig2/JBig2_SymbolDict.h
 | 
| diff --git a/core/src/fxcodec/jbig2/JBig2_SymbolDict.h b/core/src/fxcodec/jbig2/JBig2_SymbolDict.h
 | 
| index 5c7fe3c479f9f5a93b863ddc48c2ba97666a42c3..6f6b303640bc2b145fd1c4087aad801bf112f7e1 100644
 | 
| --- a/core/src/fxcodec/jbig2/JBig2_SymbolDict.h
 | 
| +++ b/core/src/fxcodec/jbig2/JBig2_SymbolDict.h
 | 
| @@ -7,12 +7,12 @@
 | 
|  #ifndef CORE_SRC_FXCODEC_JBIG2_JBIG2_SYMBOLDICT_H_
 | 
|  #define CORE_SRC_FXCODEC_JBIG2_JBIG2_SYMBOLDICT_H_
 | 
|  
 | 
| +#include <memory>
 | 
|  #include <vector>
 | 
|  
 | 
|  #include "JBig2_ArithDecoder.h"
 | 
|  #include "JBig2_List.h"
 | 
|  #include "core/include/fxcrt/fx_basic.h"
 | 
| -#include "third_party/base/nonstd_unique_ptr.h"
 | 
|  
 | 
|  class CJBig2_Image;
 | 
|  
 | 
| @@ -21,7 +21,7 @@ class CJBig2_SymbolDict {
 | 
|    CJBig2_SymbolDict();
 | 
|    ~CJBig2_SymbolDict();
 | 
|  
 | 
| -  nonstd::unique_ptr<CJBig2_SymbolDict> DeepCopy() const;
 | 
| +  std::unique_ptr<CJBig2_SymbolDict> DeepCopy() const;
 | 
|  
 | 
|    // Takes ownership of |image|.
 | 
|    void AddImage(CJBig2_Image* image) { m_SDEXSYMS.push_back(image); }
 | 
| 
 |