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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.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/bindings/core/v8/V8PerIsolateData.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp b/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp
index 6cb772b8c153aa87c7c9e6c643e719558aec4916..bc5c9777d2811d89b4b8efe2d050b741650d9d42 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8PerIsolateData.cpp
@@ -56,8 +56,8 @@ static void microtasksCompletedCallback(v8::Isolate* isolate) {
}
V8PerIsolateData::V8PerIsolateData()
- : m_isolateHolder(makeUnique<gin::IsolateHolder>()),
- m_stringCache(wrapUnique(new StringCache(isolate()))),
+ : m_isolateHolder(WTF::makeUnique<gin::IsolateHolder>()),
+ m_stringCache(WTF::wrapUnique(new StringCache(isolate()))),
m_hiddenValue(V8HiddenValue::create()),
m_privateProperty(V8PrivateProperty::create()),
m_constructorMode(ConstructorMode::CreateNewObject),

Powered by Google App Engine
This is Rietveld 408576698