Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Unified Diff: third_party/WebKit/Source/core/dom/Document.cpp

Issue 2547053003: s/ passed(...) / WTF::passed(...) / to avoid future ambiguity w/ base::Passed. (Closed)
Patch Set: Rebasing... Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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));
}
« no previous file with comments | « third_party/WebKit/Source/core/dom/ContextFeatures.cpp ('k') | third_party/WebKit/Source/core/dom/ExecutionContextTask.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698