| Index: third_party/WebKit/Source/wtf/WTFThreadData.h
|
| diff --git a/third_party/WebKit/Source/wtf/WTFThreadData.h b/third_party/WebKit/Source/wtf/WTFThreadData.h
|
| index b07fd5d8283eaa815e29bf94729aa00f04c6422f..3460e932245042fb3a3544aecf90779e4647acf2 100644
|
| --- a/third_party/WebKit/Source/wtf/WTFThreadData.h
|
| +++ b/third_party/WebKit/Source/wtf/WTFThreadData.h
|
| @@ -34,6 +34,7 @@
|
| #include "wtf/Threading.h"
|
| #include "wtf/WTFExport.h"
|
| #include "wtf/text/StringHash.h"
|
| +#include <memory>
|
|
|
| namespace blink {
|
|
|
| @@ -76,7 +77,7 @@ private:
|
| AtomicStringTableDestructor m_atomicStringTableDestructor;
|
| blink::CompressibleStringTable* m_compressibleStringTable;
|
| blink::CompressibleStringTableDestructor m_compressibleStringTableDestructor;
|
| - OwnPtr<ICUConverterWrapper> m_cachedConverterICU;
|
| + std::unique_ptr<ICUConverterWrapper> m_cachedConverterICU;
|
|
|
| static ThreadSpecific<WTFThreadData>* staticData;
|
| friend WTFThreadData& wtfThreadData();
|
|
|