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

Unified Diff: third_party/WebKit/Source/platform/heap/CallbackStack.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/platform/heap/CallbackStack.cpp
diff --git a/third_party/WebKit/Source/platform/heap/CallbackStack.cpp b/third_party/WebKit/Source/platform/heap/CallbackStack.cpp
index c6e905c629d2bf31b3f76b29804d402f928f7e25..e61dae9fe5886cf5a2be0b0e9079294dca6d2a0b 100644
--- a/third_party/WebKit/Source/platform/heap/CallbackStack.cpp
+++ b/third_party/WebKit/Source/platform/heap/CallbackStack.cpp
@@ -113,7 +113,7 @@ bool CallbackStack::Block::hasCallbackForObject(const void* object) {
#endif
std::unique_ptr<CallbackStack> CallbackStack::create() {
- return wrapUnique(new CallbackStack());
+ return WTF::wrapUnique(new CallbackStack());
}
CallbackStack::CallbackStack() : m_first(nullptr), m_last(nullptr) {}

Powered by Google App Engine
This is Rietveld 408576698