| Index: Source/core/html/track/TrackBase.h
|
| diff --git a/Source/core/html/track/TrackBase.h b/Source/core/html/track/TrackBase.h
|
| index 34098a01417cf61539f9696c0e1c2189e3277929..183c511daa64aea91515c7467f5631c42b111fd5 100644
|
| --- a/Source/core/html/track/TrackBase.h
|
| +++ b/Source/core/html/track/TrackBase.h
|
| @@ -40,7 +40,7 @@ class CORE_EXPORT TrackBase : public WillBeGarbageCollectedMixin, public RefCoun
|
| public:
|
| virtual ~TrackBase();
|
|
|
| - blink::WebMediaPlayer::TrackId trackId() const { return m_trackId; }
|
| + WebMediaPlayer::TrackId trackId() const { return m_trackId; }
|
|
|
| enum Type { TextTrack, AudioTrack, VideoTrack };
|
| Type type() const { return m_type; }
|
| @@ -70,7 +70,7 @@ protected:
|
| virtual AtomicString defaultKind() const = 0;
|
|
|
| private:
|
| - blink::WebMediaPlayer::TrackId m_trackId;
|
| + WebMediaPlayer::TrackId m_trackId;
|
| Type m_type;
|
| AtomicString m_kind;
|
| AtomicString m_label;
|
|
|