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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8PerContextData.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/V8PerContextData.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8PerContextData.cpp b/third_party/WebKit/Source/bindings/core/v8/V8PerContextData.cpp
index 56a922d919709a087e40c99e0d006a5f97ea47f6..b7d0e5aa4bb9d5b29266b307ce5fbe12fa7a251a 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8PerContextData.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V8PerContextData.cpp
@@ -46,7 +46,7 @@ V8PerContextData::V8PerContextData(v8::Local<v8::Context> context)
: m_isolate(context->GetIsolate()),
m_wrapperBoilerplates(m_isolate),
m_constructorMap(m_isolate),
- m_contextHolder(makeUnique<gin::ContextHolder>(m_isolate)),
+ m_contextHolder(WTF::makeUnique<gin::ContextHolder>(m_isolate)),
m_context(m_isolate, context),
m_activityLogger(0),
m_compiledPrivateScript(m_isolate) {
@@ -77,7 +77,7 @@ V8PerContextData::~V8PerContextData() {
std::unique_ptr<V8PerContextData> V8PerContextData::create(
v8::Local<v8::Context> context) {
- return wrapUnique(new V8PerContextData(context));
+ return WTF::wrapUnique(new V8PerContextData(context));
}
V8PerContextData* V8PerContextData::from(v8::Local<v8::Context> context) {

Powered by Google App Engine
This is Rietveld 408576698