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

Unified Diff: third_party/WebKit/Source/core/inspector/ThreadDebugger.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/core/inspector/ThreadDebugger.cpp
diff --git a/third_party/WebKit/Source/core/inspector/ThreadDebugger.cpp b/third_party/WebKit/Source/core/inspector/ThreadDebugger.cpp
index 8bcebd03c830d744079e8b7d6f3b3937b58a3c34..3b6c2df83f94cd21beeb68eb8040167ae23f16bb 100644
--- a/third_party/WebKit/Source/core/inspector/ThreadDebugger.cpp
+++ b/third_party/WebKit/Source/core/inspector/ThreadDebugger.cpp
@@ -137,7 +137,7 @@ void ThreadDebugger::promiseRejectionRevoked(v8::Local<v8::Context> context,
}
void ThreadDebugger::beginUserGesture() {
- m_userGestureIndicator = wrapUnique(
+ m_userGestureIndicator = WTF::wrapUnique(
new UserGestureIndicator(DocumentUserGestureToken::create(nullptr)));
}
@@ -459,8 +459,8 @@ void ThreadDebugger::startRepeatingTimer(
m_timerData.append(data);
m_timerCallbacks.append(callback);
- std::unique_ptr<Timer<ThreadDebugger>> timer =
- wrapUnique(new Timer<ThreadDebugger>(this, &ThreadDebugger::onTimer));
+ std::unique_ptr<Timer<ThreadDebugger>> timer = WTF::wrapUnique(
+ new Timer<ThreadDebugger>(this, &ThreadDebugger::onTimer));
Timer<ThreadDebugger>* timerPtr = timer.get();
m_timers.append(std::move(timer));
timerPtr->startRepeating(interval, BLINK_FROM_HERE);

Powered by Google App Engine
This is Rietveld 408576698