OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 24 matching lines...) Expand all Loading... |
35 namespace blink { | 35 namespace blink { |
36 | 36 |
37 class HTMLMediaElement; | 37 class HTMLMediaElement; |
38 | 38 |
39 class CORE_EXPORT TrackBase : public GarbageCollectedMixin { | 39 class CORE_EXPORT TrackBase : public GarbageCollectedMixin { |
40 public: | 40 public: |
41 virtual ~TrackBase(); | 41 virtual ~TrackBase(); |
42 | 42 |
43 WebMediaPlayer::TrackId trackId() const { return m_trackId; } | 43 WebMediaPlayer::TrackId trackId() const { return m_trackId; } |
44 | 44 |
45 enum TrackType { TextTrack, AudioTrack, VideoTrack }; | 45 WebMediaPlayer::TrackType type() const { return m_type; } |
46 TrackType type() const { return m_type; } | |
47 | 46 |
48 const AtomicString& kind() const { return m_kind; } | 47 const AtomicString& kind() const { return m_kind; } |
49 virtual void setKind(const AtomicString&); | 48 virtual void setKind(const AtomicString&); |
50 | 49 |
51 AtomicString label() const { return m_label; } | 50 AtomicString label() const { return m_label; } |
52 void setLabel(const AtomicString& label) { m_label = label; } | 51 void setLabel(const AtomicString& label) { m_label = label; } |
53 | 52 |
54 AtomicString language() const { return m_language; } | 53 AtomicString language() const { return m_language; } |
55 void setLanguage(const AtomicString& language) { m_language = language; } | 54 void setLanguage(const AtomicString& language) { m_language = language; } |
56 | 55 |
57 String id() const { return m_id; } | 56 String id() const { return m_id; } |
58 void setId(const String& id) { m_id = id; } | 57 void setId(const String& id) { m_id = id; } |
59 | 58 |
60 void setMediaElement(HTMLMediaElement* mediaElement) { m_mediaElement = medi
aElement; } | 59 void setMediaElement(HTMLMediaElement* mediaElement) { m_mediaElement = medi
aElement; } |
61 HTMLMediaElement* mediaElement() const { return m_mediaElement; } | 60 HTMLMediaElement* mediaElement() const { return m_mediaElement; } |
62 Node* owner() const; | 61 Node* owner() const; |
63 | 62 |
64 DECLARE_VIRTUAL_TRACE(); | 63 DECLARE_VIRTUAL_TRACE(); |
65 | 64 |
66 protected: | 65 protected: |
67 TrackBase(TrackType, const AtomicString& label, const AtomicString& language
, const String& id); | 66 TrackBase(WebMediaPlayer::TrackType, const AtomicString& label, const Atomic
String& language, const String& id); |
68 | 67 |
69 virtual bool isValidKind(const AtomicString&) const = 0; | 68 virtual bool isValidKind(const AtomicString&) const = 0; |
70 virtual AtomicString defaultKind() const = 0; | 69 virtual AtomicString defaultKind() const = 0; |
71 | 70 |
72 private: | 71 private: |
73 WebMediaPlayer::TrackId m_trackId; | 72 WebMediaPlayer::TrackId m_trackId; |
74 TrackType m_type; | 73 WebMediaPlayer::TrackType m_type; |
75 AtomicString m_kind; | 74 AtomicString m_kind; |
76 AtomicString m_label; | 75 AtomicString m_label; |
77 AtomicString m_language; | 76 AtomicString m_language; |
78 String m_id; | 77 String m_id; |
79 RawPtrWillBeMember<HTMLMediaElement> m_mediaElement; | 78 RawPtrWillBeMember<HTMLMediaElement> m_mediaElement; |
80 }; | 79 }; |
81 | 80 |
82 #define DEFINE_TRACK_TYPE_CASTS(thisType, predicate) \ | 81 #define DEFINE_TRACK_TYPE_CASTS(thisType, predicate) \ |
83 DEFINE_TYPE_CASTS(thisType, TrackBase, track, track->type() == predicate, tr
ack.type() == predicate) | 82 DEFINE_TYPE_CASTS(thisType, TrackBase, track, track->type() == predicate, tr
ack.type() == predicate) |
84 | 83 |
85 } // namespace blink | 84 } // namespace blink |
86 | 85 |
87 #endif // TrackBase_h | 86 #endif // TrackBase_h |
OLD | NEW |