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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/DOMDataStore.h

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/bindings/core/v8/DOMDataStore.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/DOMDataStore.h b/third_party/WebKit/Source/bindings/core/v8/DOMDataStore.h
index b4282af4c5f3d1b01ee8af0456f9f00ff03aba79..272c55149e824c63d1a9f82d6811b3eff2cae980 100644
--- a/third_party/WebKit/Source/bindings/core/v8/DOMDataStore.h
+++ b/third_party/WebKit/Source/bindings/core/v8/DOMDataStore.h
@@ -54,7 +54,7 @@ class DOMDataStore {
DOMDataStore(v8::Isolate* isolate, bool isMainWorld)
: m_isMainWorld(isMainWorld),
// We never use |m_wrapperMap| when it's the main world.
- m_wrapperMap(wrapUnique(
+ m_wrapperMap(WTF::wrapUnique(
isMainWorld ? nullptr
: new DOMWrapperMap<ScriptWrappable>(isolate))) {}

Powered by Google App Engine
This is Rietveld 408576698