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

Unified Diff: third_party/WebKit/Source/core/loader/TextTrackLoader.h

Issue 2646443012: Migrate Timer to TaskRunnerTimer in TextTrackLoader (Closed)
Patch Set: Migrate Timer to TaskRunnerTimer in TextTrackLoader Created 3 years, 11 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/loader/TextTrackLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/loader/TextTrackLoader.h
diff --git a/third_party/WebKit/Source/core/loader/TextTrackLoader.h b/third_party/WebKit/Source/core/loader/TextTrackLoader.h
index 827603f96649cc660145b67906f8e5181d35f797..1dc3ff3652947bd5711f89452db1043ad9c6e66f 100644
--- a/third_party/WebKit/Source/core/loader/TextTrackLoader.h
+++ b/third_party/WebKit/Source/core/loader/TextTrackLoader.h
@@ -30,7 +30,6 @@
#include "core/fetch/ResourceOwner.h"
#include "core/html/track/vtt/VTTParser.h"
#include "platform/CrossOriginAttributeValue.h"
-#include "platform/Timer.h"
#include "platform/heap/Handle.h"
namespace blink {
@@ -95,7 +94,7 @@ class TextTrackLoader final : public GarbageCollectedFinalized<TextTrackLoader>,
Member<VTTParser> m_cueParser;
// FIXME: Remove this pointer and get the Document from m_client.
Member<Document> m_document;
- Timer<TextTrackLoader> m_cueLoadTimer;
+ TaskRunnerTimer<TextTrackLoader> m_cueLoadTimer;
State m_state;
bool m_newCuesAvailable;
};
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/loader/TextTrackLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698