| Index: third_party/WebKit/Source/wtf/WTFThreadData.cpp
|
| diff --git a/third_party/WebKit/Source/wtf/WTFThreadData.cpp b/third_party/WebKit/Source/wtf/WTFThreadData.cpp
|
| index 4fe603433c06e630906179ef856dcaaad0738341..286c1182f20d345f9d6f4d638acaaff71c97e459 100644
|
| --- a/third_party/WebKit/Source/wtf/WTFThreadData.cpp
|
| +++ b/third_party/WebKit/Source/wtf/WTFThreadData.cpp
|
| @@ -26,7 +26,6 @@
|
|
|
| #include "wtf/WTFThreadData.h"
|
|
|
| -#include "wtf/PtrUtil.h"
|
| #include "wtf/text/TextCodecICU.h"
|
|
|
| namespace WTF {
|
| @@ -38,7 +37,7 @@ WTFThreadData::WTFThreadData()
|
| , m_atomicStringTableDestructor(nullptr)
|
| , m_compressibleStringTable(nullptr)
|
| , m_compressibleStringTableDestructor(nullptr)
|
| - , m_cachedConverterICU(wrapUnique(new ICUConverterWrapper))
|
| + , m_cachedConverterICU(adoptPtr(new ICUConverterWrapper))
|
| {
|
| }
|
|
|
|
|