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

Unified Diff: third_party/WebKit/Source/core/html/HTMLMediaElement.h

Issue 2554113002: Deprecate UnthrottledThreadTimer. (Closed)
Patch Set: Move forgotten timer too 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLMediaElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.h b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
index 05de20ea0119e09ac4cb5ccf83341e133eca71de..37e4ce12f9631c184172f667e5cc854a170ffb82 100644
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
@@ -553,12 +553,13 @@ class CORE_EXPORT HTMLMediaElement
void viewportFillDebouncerTimerFired(TimerBase*);
- UnthrottledThreadTimer<HTMLMediaElement> m_loadTimer;
- UnthrottledThreadTimer<HTMLMediaElement> m_progressEventTimer;
- UnthrottledThreadTimer<HTMLMediaElement> m_playbackProgressTimer;
- UnthrottledThreadTimer<HTMLMediaElement> m_audioTracksTimer;
- UnthrottledThreadTimer<HTMLMediaElement> m_viewportFillDebouncerTimer;
- UnthrottledThreadTimer<HTMLMediaElement> m_checkViewportIntersectionTimer;
+ TaskRunnerTimer<HTMLMediaElement> m_loadTimer;
+ TaskRunnerTimer<HTMLMediaElement> m_progressEventTimer;
+ TaskRunnerTimer<HTMLMediaElement> m_playbackProgressTimer;
+ TaskRunnerTimer<HTMLMediaElement> m_audioTracksTimer;
+ TaskRunnerTimer<HTMLMediaElement> m_viewportFillDebouncerTimer;
+ TaskRunnerTimer<HTMLMediaElement> m_checkViewportIntersectionTimer;
+
Member<TimeRanges> m_playedTimeRanges;
Member<GenericEventQueue> m_asyncEventQueue;
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/HTMLMediaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698