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

Unified Diff: Source/core/html/track/WebVTTParser.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/VTTRegionList.idl ('k') | Source/core/html/track/WebVTTParser.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/track/WebVTTParser.h
diff --git a/Source/core/html/track/WebVTTParser.h b/Source/core/html/track/WebVTTParser.h
index d21e8e64dab9f82372fb42055e8afb70b349cb6c..8b89f5d68cf5855c5902c541dc9895320e383ca3 100644
--- a/Source/core/html/track/WebVTTParser.h
+++ b/Source/core/html/track/WebVTTParser.h
@@ -36,7 +36,7 @@
#include "core/dom/DocumentFragment.h"
#include "core/fetch/TextResourceDecoder.h"
#include "core/html/track/TextTrackCue.h"
-#include "core/html/track/TextTrackRegion.h"
+#include "core/html/track/VTTRegion.h"
#include "core/html/track/WebVTTTokenizer.h"
#include "wtf/PassOwnPtr.h"
#include "wtf/text/StringBuilder.h"
@@ -108,7 +108,7 @@ public:
// Transfers ownership of last parsed cues to caller.
void getNewCues(Vector<RefPtr<TextTrackCue> >&);
- void getNewRegions(Vector<RefPtr<TextTrackRegion> >&);
+ void getNewRegions(Vector<RefPtr<VTTRegion> >&);
private:
WebVTTParser(WebVTTParserClient*, Document&);
@@ -146,7 +146,7 @@ private:
Vector<RefPtr<TextTrackCue> > m_cuelist;
- Vector<RefPtr<TextTrackRegion> > m_regionList;
+ Vector<RefPtr<VTTRegion> > m_regionList;
};
} // namespace WebCore
« no previous file with comments | « Source/core/html/track/VTTRegionList.idl ('k') | Source/core/html/track/WebVTTParser.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698