| Index: third_party/WebKit/Source/core/dom/Document.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Document.cpp b/third_party/WebKit/Source/core/dom/Document.cpp
|
| index ef948f518c45cd9cd95a1baff6af7c947baaaac2..42be05c5f800748486f1d7d6964667c041548327 100644
|
| --- a/third_party/WebKit/Source/core/dom/Document.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Document.cpp
|
| @@ -558,7 +558,7 @@ Document::~Document() {
|
|
|
| SelectorQueryCache& Document::selectorQueryCache() {
|
| if (!m_selectorQueryCache)
|
| - m_selectorQueryCache = makeUnique<SelectorQueryCache>();
|
| + m_selectorQueryCache = WTF::makeUnique<SelectorQueryCache>();
|
| return *m_selectorQueryCache;
|
| }
|
|
|
| @@ -4341,7 +4341,7 @@ Document::EventFactorySet& Document::eventFactories() {
|
|
|
| const OriginAccessEntry& Document::accessEntryFromURL() {
|
| if (!m_accessEntryFromURL) {
|
| - m_accessEntryFromURL = wrapUnique(
|
| + m_accessEntryFromURL = WTF::wrapUnique(
|
| new OriginAccessEntry(url().protocol(), url().host(),
|
| OriginAccessEntry::AllowRegisterableDomains));
|
| }
|
|
|