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

Unified Diff: third_party/WebKit/Source/platform/WaitableEvent.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/WaitableEvent.cpp
diff --git a/third_party/WebKit/Source/platform/WaitableEvent.cpp b/third_party/WebKit/Source/platform/WaitableEvent.cpp
index 538b20d6a083550f22cb2e828ec2bea70f687964..9bb284310ebb9fc30a1246899bcefe252a55585d 100644
--- a/third_party/WebKit/Source/platform/WaitableEvent.cpp
+++ b/third_party/WebKit/Source/platform/WaitableEvent.cpp
@@ -14,7 +14,7 @@
namespace blink {
WaitableEvent::WaitableEvent(ResetPolicy policy, InitialState state) {
- m_impl = wrapUnique(new base::WaitableEvent(
+ m_impl = WTF::wrapUnique(new base::WaitableEvent(
policy == ResetPolicy::Manual
? base::WaitableEvent::ResetPolicy::MANUAL
: base::WaitableEvent::ResetPolicy::AUTOMATIC,
« no previous file with comments | « third_party/WebKit/Source/platform/PODArena.h ('k') | third_party/WebKit/Source/platform/WebThreadSupportingGC.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698