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

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

Issue 2554113002: Deprecate UnthrottledThreadTimer. (Closed)
Patch Set: 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/html/HTMLMediaElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLMediaElement.h b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
index 36a4468e652c81d657a72a540132f95eb128ed3a..40aba5846546fb81b8165d022bff6799932ee5e9 100644
--- a/third_party/WebKit/Source/core/html/HTMLMediaElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLMediaElement.h
@@ -546,11 +546,13 @@ class CORE_EXPORT HTMLMediaElement : public HTMLElement,
void checkViewportIntersectionChanged();
void viewportFillDebouncerTimerFired(TimerBase*);
- UnthrottledThreadTimer<HTMLMediaElement> m_loadTimer;
- UnthrottledThreadTimer<HTMLMediaElement> m_progressEventTimer;
- UnthrottledThreadTimer<HTMLMediaElement> m_playbackProgressTimer;
- UnthrottledThreadTimer<HTMLMediaElement> m_audioTracksTimer;
- UnthrottledThreadTimer<HTMLMediaElement> m_viewportFillDebouncerTimer;
+ // These timers should not be throttled.
+ TaskRunnerTimer<HTMLMediaElement> m_loadTimer;
+ TaskRunnerTimer<HTMLMediaElement> m_progressEventTimer;
+ TaskRunnerTimer<HTMLMediaElement> m_playbackProgressTimer;
+ TaskRunnerTimer<HTMLMediaElement> m_audioTracksTimer;
+ TaskRunnerTimer<HTMLMediaElement> m_viewportFillDebouncerTimer;
+
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') | third_party/WebKit/Source/platform/Timer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698