Chromium Code Reviews| 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; } |
|
chcunningham
2016/06/13 19:30:43
Why do we have both this and id() methods? Can you
servolk
2016/06/13 22:00:16
Done.
|
| 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; |