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

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

Issue 1984663002: Remove mode-transition in TextTrack::setKind (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/html/track/TextTrack.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/track/TextTrack.h
diff --git a/third_party/WebKit/Source/core/html/track/TextTrack.h b/third_party/WebKit/Source/core/html/track/TextTrack.h
index 305364cb177fb73ae0666a1da9e92805d0ffcd7f..7ff10baee70c9f460a832c387270eb5563b4389e 100644
--- a/third_party/WebKit/Source/core/html/track/TextTrack.h
+++ b/third_party/WebKit/Source/core/html/track/TextTrack.h
@@ -58,7 +58,6 @@ public:
virtual void setTrackList(TextTrackList*);
TextTrackList* trackList() { return m_trackList; }
- void setKind(const AtomicString&) override;
bool isVisualKind() const;
static const AtomicString& subtitlesKeyword();
@@ -72,6 +71,11 @@ public:
static const AtomicString& hiddenKeyword();
static const AtomicString& showingKeyword();
+ void setKind(const AtomicString& kind) { m_kind = kind; }
+ void setLabel(const AtomicString& label) { m_label = label; }
+ void setLanguage(const AtomicString& language) { m_language = language; }
+ void setId(const String& id) { m_id = id; }
+
AtomicString mode() const { return m_mode; }
virtual void setMode(const AtomicString&);
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/html/track/TextTrack.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698