OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011, 2012 Apple Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 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 22 matching lines...) Expand all Loading... |
33 #include "wtf/PassRefPtr.h" | 33 #include "wtf/PassRefPtr.h" |
34 #include "wtf/RefCounted.h" | 34 #include "wtf/RefCounted.h" |
35 #include "wtf/Vector.h" | 35 #include "wtf/Vector.h" |
36 | 36 |
37 namespace WebCore { | 37 namespace WebCore { |
38 | 38 |
39 class HTMLMediaElement; | 39 class HTMLMediaElement; |
40 class TextTrack; | 40 class TextTrack; |
41 class TextTrackList; | 41 class TextTrackList; |
42 | 42 |
43 class TextTrackList : public RefCounted<TextTrackList>, public ScriptWrappable,
public EventTarget { | 43 class TextTrackList : public RefCounted<TextTrackList>, public ScriptWrappable,
public EventTargetWithInlineData { |
44 public: | 44 public: |
45 static PassRefPtr<TextTrackList> create(HTMLMediaElement* owner, ScriptExecu
tionContext* context) | 45 static PassRefPtr<TextTrackList> create(HTMLMediaElement* owner, ScriptExecu
tionContext* context) |
46 { | 46 { |
47 return adoptRef(new TextTrackList(owner, context)); | 47 return adoptRef(new TextTrackList(owner, context)); |
48 } | 48 } |
49 ~TextTrackList(); | 49 ~TextTrackList(); |
50 | 50 |
51 unsigned length() const; | 51 unsigned length() const; |
52 int getTrackIndex(TextTrack*); | 52 int getTrackIndex(TextTrack*); |
53 int getTrackIndexRelativeToRenderedTracks(TextTrack*); | 53 int getTrackIndexRelativeToRenderedTracks(TextTrack*); |
54 bool contains(TextTrack*) const; | 54 bool contains(TextTrack*) const; |
55 | 55 |
56 TextTrack* item(unsigned index); | 56 TextTrack* item(unsigned index); |
57 void append(PassRefPtr<TextTrack>); | 57 void append(PassRefPtr<TextTrack>); |
58 void remove(TextTrack*); | 58 void remove(TextTrack*); |
59 | 59 |
60 // EventTarget | 60 // EventTarget |
61 virtual const AtomicString& interfaceName() const; | 61 virtual const AtomicString& interfaceName() const OVERRIDE; |
62 using RefCounted<TextTrackList>::ref; | 62 using RefCounted<TextTrackList>::ref; |
63 using RefCounted<TextTrackList>::deref; | 63 using RefCounted<TextTrackList>::deref; |
64 virtual ScriptExecutionContext* scriptExecutionContext() const { return m_co
ntext; } | 64 virtual ScriptExecutionContext* scriptExecutionContext() const OVERRIDE { re
turn m_context; } |
65 | 65 |
66 DEFINE_ATTRIBUTE_EVENT_LISTENER(addtrack); | 66 DEFINE_ATTRIBUTE_EVENT_LISTENER(addtrack); |
67 | 67 |
68 void clearOwner() { m_owner = 0; } | 68 void clearOwner() { m_owner = 0; } |
69 Node* owner() const; | 69 Node* owner() const; |
70 | 70 |
71 bool isFiringEventListeners() { return m_dispatchingEvents; } | 71 bool isFiringEventListeners() { return m_dispatchingEvents; } |
72 | 72 |
73 private: | 73 private: |
74 TextTrackList(HTMLMediaElement*, ScriptExecutionContext*); | 74 TextTrackList(HTMLMediaElement*, ScriptExecutionContext*); |
75 | 75 |
76 // EventTarget | 76 // EventTarget |
77 virtual void refEventTarget() { ref(); } | 77 virtual void refEventTarget() OVERRIDE { ref(); } |
78 virtual void derefEventTarget() { deref(); } | 78 virtual void derefEventTarget() OVERRIDE { deref(); } |
79 virtual EventTargetData* eventTargetData() { return &m_eventTargetData; } | |
80 virtual EventTargetData* ensureEventTargetData() { return &m_eventTargetData
; } | |
81 | 79 |
82 void scheduleAddTrackEvent(PassRefPtr<TextTrack>); | 80 void scheduleAddTrackEvent(PassRefPtr<TextTrack>); |
83 void asyncEventTimerFired(Timer<TextTrackList>*); | 81 void asyncEventTimerFired(Timer<TextTrackList>*); |
84 | 82 |
85 void invalidateTrackIndexesAfterTrack(TextTrack*); | 83 void invalidateTrackIndexesAfterTrack(TextTrack*); |
86 | 84 |
87 ScriptExecutionContext* m_context; | 85 ScriptExecutionContext* m_context; |
88 HTMLMediaElement* m_owner; | 86 HTMLMediaElement* m_owner; |
89 | 87 |
90 Vector<RefPtr<Event> > m_pendingEvents; | 88 Vector<RefPtr<Event> > m_pendingEvents; |
91 Timer<TextTrackList> m_pendingEventTimer; | 89 Timer<TextTrackList> m_pendingEventTimer; |
92 | 90 |
93 EventTargetData m_eventTargetData; | |
94 Vector<RefPtr<TextTrack> > m_addTrackTracks; | 91 Vector<RefPtr<TextTrack> > m_addTrackTracks; |
95 Vector<RefPtr<TextTrack> > m_elementTracks; | 92 Vector<RefPtr<TextTrack> > m_elementTracks; |
96 Vector<RefPtr<TextTrack> > m_inbandTracks; | 93 Vector<RefPtr<TextTrack> > m_inbandTracks; |
97 | 94 |
98 int m_dispatchingEvents; | 95 int m_dispatchingEvents; |
99 }; | 96 }; |
100 | 97 |
101 } // namespace WebCore | 98 } // namespace WebCore |
102 | 99 |
103 #endif | 100 #endif |
OLD | NEW |