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

Unified Diff: third_party/WebKit/Source/platform/weborigin/SecurityPolicy.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/platform/weborigin/SecurityPolicy.cpp
diff --git a/third_party/WebKit/Source/platform/weborigin/SecurityPolicy.cpp b/third_party/WebKit/Source/platform/weborigin/SecurityPolicy.cpp
index 93c0bd6964aafaf9eccd93d8babc0004e0751f8e..d934e320fc43a2033a4d5c920c2cd9256f3dfb00 100644
--- a/third_party/WebKit/Source/platform/weborigin/SecurityPolicy.cpp
+++ b/third_party/WebKit/Source/platform/weborigin/SecurityPolicy.cpp
@@ -252,7 +252,7 @@ void SecurityPolicy::addOriginAccessWhitelistEntry(
OriginAccessMap::AddResult result =
originAccessMap().add(sourceString, nullptr);
if (result.isNewEntry)
- result.storedValue->value = wrapUnique(new OriginAccessWhiteList);
+ result.storedValue->value = WTF::wrapUnique(new OriginAccessWhiteList);
OriginAccessWhiteList* list = result.storedValue->value.get();
list->append(OriginAccessEntry(destinationProtocol, destinationDomain,
« no previous file with comments | « third_party/WebKit/Source/platform/weborigin/SecurityOrigin.cpp ('k') | third_party/WebKit/Source/web/ChromeClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698