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

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

Issue 2050043002: Generate and assign media track ids in demuxers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@use-streamparser-trackid
Patch Set: Created 4 years, 6 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/html/track/TrackBase.h
diff --git a/third_party/WebKit/Source/core/html/track/TrackBase.h b/third_party/WebKit/Source/core/html/track/TrackBase.h
index d622095798c74391032891f391871ecade7e6268..238b6782554520cbf21d7022de2c92e35c49ba9e 100644
--- a/third_party/WebKit/Source/core/html/track/TrackBase.h
+++ b/third_party/WebKit/Source/core/html/track/TrackBase.h
@@ -40,7 +40,7 @@ class CORE_EXPORT TrackBase : public Supplementable<TrackBase> {
public:
virtual ~TrackBase();
- WebMediaPlayer::TrackId trackId() const { return m_trackId; }
+ WebMediaPlayer::TrackId trackId() const { return m_id; }
WebMediaPlayer::TrackType type() const { return m_type; }
@@ -58,7 +58,6 @@ public:
protected:
TrackBase(WebMediaPlayer::TrackType, const AtomicString& kind, const AtomicString& label, const AtomicString& language, const String& id);
- WebMediaPlayer::TrackId m_trackId;
WebMediaPlayer::TrackType m_type;
AtomicString m_kind;
AtomicString m_label;

Powered by Google App Engine
This is Rietveld 408576698