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

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

Issue 2685943004: Remove TextTrack.regions and VTTRegionList (Closed)
Patch Set: Rebase Created 3 years, 10 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/loader/TextTrackLoader.h
diff --git a/third_party/WebKit/Source/core/loader/TextTrackLoader.h b/third_party/WebKit/Source/core/loader/TextTrackLoader.h
index 3ce869eb845b60895da1834a8b79fb0454157c61..3b8c27c97cf6505b99c459f6335dd1b0f7a9e16d 100644
--- a/third_party/WebKit/Source/core/loader/TextTrackLoader.h
+++ b/third_party/WebKit/Source/core/loader/TextTrackLoader.h
@@ -43,7 +43,6 @@ class TextTrackLoaderClient : public GarbageCollectedMixin {
virtual void newCuesAvailable(TextTrackLoader*) = 0;
virtual void cueLoadingCompleted(TextTrackLoader*, bool loadingFailed) = 0;
- virtual void newRegionsAvailable(TextTrackLoader*) = 0;
};
class TextTrackLoader final : public GarbageCollectedFinalized<TextTrackLoader>,
@@ -65,7 +64,6 @@ class TextTrackLoader final : public GarbageCollectedFinalized<TextTrackLoader>,
State loadState() { return m_state; }
void getNewCues(HeapVector<Member<TextTrackCue>>& outputCues);
- void getNewRegions(HeapVector<Member<VTTRegion>>& outputRegions);
DECLARE_TRACE();
@@ -80,7 +78,6 @@ class TextTrackLoader final : public GarbageCollectedFinalized<TextTrackLoader>,
// VTTParserClient
void newCuesParsed() override;
- void newRegionsParsed() override;
void fileFailedToParse() override;
TextTrackLoader(TextTrackLoaderClient&, Document&);

Powered by Google App Engine
This is Rietveld 408576698