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

Unified Diff: third_party/WebKit/Source/core/inspector/ThreadDebugger.cpp

Issue 2191533003: Refactor Timer classes in preparation for landing FrameTimers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More build fixes Created 4 years, 5 months 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 bb64706e87954b09b8ea578d21c128612944f3f0..f7d6bd6bf6f5aef0681e7910d334d5c17f45b59a 100644
--- a/third_party/WebKit/Source/core/inspector/ThreadDebugger.cpp
+++ b/third_party/WebKit/Source/core/inspector/ThreadDebugger.cpp
@@ -373,7 +373,7 @@ void ThreadDebugger::cancelTimer(void* data)
}
}
-void ThreadDebugger::onTimer(Timer<ThreadDebugger>* timer)
+void ThreadDebugger::onTimer(TimerBase* timer)
{
for (size_t index = 0; index < m_timers.size(); ++index) {
if (m_timers[index].get() == timer) {

Powered by Google App Engine
This is Rietveld 408576698