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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/CallbackPromiseAdapter.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
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/DOMDataStore.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/CallbackPromiseAdapter.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/CallbackPromiseAdapter.h b/third_party/WebKit/Source/bindings/core/v8/CallbackPromiseAdapter.h
index 657adb3bbe34338098a6131618919105f05ad6ba..3e46e81aea9193f5936fc4c296e0ae580f4b09f8 100644
--- a/third_party/WebKit/Source/bindings/core/v8/CallbackPromiseAdapter.h
+++ b/third_party/WebKit/Source/bindings/core/v8/CallbackPromiseAdapter.h
@@ -83,12 +83,13 @@ namespace blink {
// };
// std::unique_ptr<WebCallbacks<std::unique_ptr<WebMyClass>,
// const WebMyErrorClass&>>
-// callbacks = wrapUnique(new CallbackPromiseAdapter<MyClass, MyErrorClass>(
-// resolver));
+// callbacks = WTF::wrapUnique(
+// new CallbackPromiseAdapter<MyClass, MyErrorClass>(resolver));
// ...
//
// std::unique_ptr<WebCallbacks<bool, const WebMyErrorClass&>> callbacks2 =
-// wrapUnique(new CallbackPromiseAdapter<bool, MyErrorClass>(resolver));
+// WTF::wrapUnique(
+// new CallbackPromiseAdapter<bool, MyErrorClass>(resolver));
// ...
//
//
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/DOMDataStore.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698