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

Unified Diff: third_party/WebKit/Source/core/html/shadow/MediaControls.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/html/shadow/MediaControls.cpp
diff --git a/third_party/WebKit/Source/core/html/shadow/MediaControls.cpp b/third_party/WebKit/Source/core/html/shadow/MediaControls.cpp
index c2931fc698a748d0ca5d495dd9e2909e20ca029a..abb61be1737dbf90b0fbd6bf02ba85b5ec31cd1f 100644
--- a/third_party/WebKit/Source/core/html/shadow/MediaControls.cpp
+++ b/third_party/WebKit/Source/core/html/shadow/MediaControls.cpp
@@ -606,7 +606,7 @@ void MediaControls::defaultEventHandler(Event* event)
}
}
-void MediaControls::hideMediaControlsTimerFired(Timer<MediaControls>*)
+void MediaControls::hideMediaControlsTimerFired(TimerBase*)
{
unsigned behaviorFlags = m_hideTimerBehaviorFlags | IgnoreFocus | IgnoreVideoHover;
m_hideTimerBehaviorFlags = IgnoreNone;
@@ -672,7 +672,7 @@ void MediaControls::notifyPanelWidthChanged(const LayoutUnit& newWidth)
m_panelWidthChangedTimer.startOneShot(0, BLINK_FROM_HERE);
}
-void MediaControls::panelWidthChangedTimerFired(Timer<MediaControls>*)
+void MediaControls::panelWidthChangedTimerFired(TimerBase*)
{
computeWhichControlsFit();
}

Powered by Google App Engine
This is Rietveld 408576698