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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.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/V0CustomElementBinding.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.cpp b/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.cpp
index 559b658610b159a740841101ea6d8b7077b0b066..83562d3024220c73e8c19685535b04c2ab0b02fe 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/V0CustomElementBinding.cpp
@@ -38,7 +38,7 @@ namespace blink {
std::unique_ptr<V0CustomElementBinding> V0CustomElementBinding::create(
v8::Isolate* isolate,
v8::Local<v8::Object> prototype) {
- return wrapUnique(new V0CustomElementBinding(isolate, prototype));
+ return WTF::wrapUnique(new V0CustomElementBinding(isolate, prototype));
}
V0CustomElementBinding::V0CustomElementBinding(v8::Isolate* isolate,

Powered by Google App Engine
This is Rietveld 408576698