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

Unified Diff: Source/core/html/track/TextTrack.h

Issue 55653003: Rename TextTrackRegion/TextTrackRegionList to VTTRegion/VTTRegionList (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: update test expectations Created 7 years, 1 month 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 | « Source/core/html/track/LoadableTextTrack.cpp ('k') | Source/core/html/track/TextTrack.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/TextTrack.h
diff --git a/Source/core/html/track/TextTrack.h b/Source/core/html/track/TextTrack.h
index 45cfd47ac914f489a70740651bcec93f3af66e9e..e7e8833be3ad0df81ba6543b6f9904827e954709 100644
--- a/Source/core/html/track/TextTrack.h
+++ b/Source/core/html/track/TextTrack.h
@@ -39,8 +39,8 @@ class HTMLMediaElement;
class TextTrack;
class TextTrackCue;
class TextTrackCueList;
-class TextTrackRegion;
-class TextTrackRegionList;
+class VTTRegion;
+class VTTRegionList;
class TextTrackClient {
public:
@@ -101,9 +101,9 @@ public:
void removeCue(TextTrackCue*, ExceptionState&);
bool hasCue(TextTrackCue*);
- TextTrackRegionList* regions();
- void addRegion(PassRefPtr<TextTrackRegion>);
- void removeRegion(TextTrackRegion*, ExceptionState&);
+ VTTRegionList* regions();
+ void addRegion(PassRefPtr<VTTRegion>);
+ void removeRegion(VTTRegion*, ExceptionState&);
void cueWillChange(TextTrackCue*);
void cueDidChange(TextTrackCue*);
@@ -145,8 +145,8 @@ protected:
RefPtr<TextTrackCueList> m_cues;
private:
- TextTrackRegionList* ensureTextTrackRegionList();
- RefPtr<TextTrackRegionList> m_regions;
+ VTTRegionList* ensureVTTRegionList();
+ RefPtr<VTTRegionList> m_regions;
TextTrackCueList* ensureTextTrackCueList();
« no previous file with comments | « Source/core/html/track/LoadableTextTrack.cpp ('k') | Source/core/html/track/TextTrack.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698