| Index: third_party/WebKit/Source/core/style/DataPersistent.h
|
| diff --git a/third_party/WebKit/Source/core/style/DataPersistent.h b/third_party/WebKit/Source/core/style/DataPersistent.h
|
| index 36ed6da724adfd302566633b8b953d36512ce107..78ade62015c02ca7b7f23bbf9f493e8ca6fa36b0 100644
|
| --- a/third_party/WebKit/Source/core/style/DataPersistent.h
|
| +++ b/third_party/WebKit/Source/core/style/DataPersistent.h
|
| @@ -33,7 +33,7 @@ class DataPersistent {
|
|
|
| DataPersistent(const DataPersistent& other) : m_ownCopy(false) {
|
| if (other.m_data)
|
| - m_data = wrapUnique(new Persistent<T>(other.m_data->get()));
|
| + m_data = WTF::wrapUnique(new Persistent<T>(other.m_data->get()));
|
|
|
| // Invalidated, subsequent mutations will happen on a new copy.
|
| //
|
| @@ -57,7 +57,7 @@ class DataPersistent {
|
|
|
| void init() {
|
| ASSERT(!m_data);
|
| - m_data = wrapUnique(new Persistent<T>(T::create()));
|
| + m_data = WTF::wrapUnique(new Persistent<T>(T::create()));
|
| m_ownCopy = true;
|
| }
|
|
|
|
|