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

Side by Side Diff: Source/core/html/track/TextTrackList.h

Issue 177243018: Prevent 'removetrack' events from firing when all inband text tracks are removed. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove console messages Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/html/track/TextTrack.cpp ('k') | Source/core/html/track/TextTrackList.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef TextTrackList_h 26 #ifndef TextTrackList_h
27 #define TextTrackList_h 27 #define TextTrackList_h
28 28
29 #include "bindings/v8/ScriptWrappable.h" 29 #include "bindings/v8/ScriptWrappable.h"
30 #include "core/events/EventListener.h" 30 #include "core/events/EventListener.h"
31 #include "core/events/EventTarget.h" 31 #include "core/events/EventTarget.h"
32 #include "core/html/HTMLMediaElement.h"
32 #include "platform/Timer.h" 33 #include "platform/Timer.h"
33 #include "wtf/PassRefPtr.h" 34 #include "wtf/PassRefPtr.h"
34 #include "wtf/RefCounted.h" 35 #include "wtf/RefCounted.h"
35 #include "wtf/Vector.h" 36 #include "wtf/Vector.h"
36 37
37 namespace WebCore { 38 namespace WebCore {
38 39
39 class GenericEventQueue; 40 class GenericEventQueue;
40 class HTMLMediaElement;
41 class TextTrack; 41 class TextTrack;
42 class TextTrackList;
43 42
44 class TextTrackList FINAL : public RefCounted<TextTrackList>, public ScriptWrapp able, public EventTargetWithInlineData { 43 class TextTrackList FINAL : public RefCounted<TextTrackList>, public ScriptWrapp able, public EventTargetWithInlineData {
45 REFCOUNTED_EVENT_TARGET(TextTrackList); 44 REFCOUNTED_EVENT_TARGET(TextTrackList);
46 public: 45 public:
47 static PassRefPtr<TextTrackList> create(HTMLMediaElement* owner) 46 static PassRefPtr<TextTrackList> create(HTMLMediaElement* owner)
48 { 47 {
49 return adoptRef(new TextTrackList(owner)); 48 return adoptRef(new TextTrackList(owner));
50 } 49 }
51 virtual ~TextTrackList(); 50 virtual ~TextTrackList();
52 51
53 unsigned length() const; 52 unsigned length() const;
54 int getTrackIndex(TextTrack*); 53 int getTrackIndex(TextTrack*);
55 int getTrackIndexRelativeToRenderedTracks(TextTrack*); 54 int getTrackIndexRelativeToRenderedTracks(TextTrack*);
56 bool contains(TextTrack*) const; 55 bool contains(TextTrack*) const;
57 56
58 TextTrack* item(unsigned index); 57 TextTrack* item(unsigned index);
59 TextTrack* getTrackById(const AtomicString& id); 58 TextTrack* getTrackById(const AtomicString& id);
60 void append(PassRefPtr<TextTrack>); 59 void append(PassRefPtr<TextTrack>);
61 void remove(TextTrack*); 60 void remove(TextTrack*);
62 61
63 // EventTarget 62 // EventTarget
64 virtual const AtomicString& interfaceName() const OVERRIDE; 63 virtual const AtomicString& interfaceName() const OVERRIDE;
65 virtual ExecutionContext* executionContext() const OVERRIDE; 64 virtual ExecutionContext* executionContext() const OVERRIDE;
66 65
67 DEFINE_ATTRIBUTE_EVENT_LISTENER(addtrack); 66 DEFINE_ATTRIBUTE_EVENT_LISTENER(addtrack);
68 DEFINE_ATTRIBUTE_EVENT_LISTENER(change); 67 DEFINE_ATTRIBUTE_EVENT_LISTENER(change);
69 DEFINE_ATTRIBUTE_EVENT_LISTENER(removetrack); 68 DEFINE_ATTRIBUTE_EVENT_LISTENER(removetrack);
70 69
71 void clearOwnerAndClients(); 70 void clearOwnerAndClients();
72 Node* owner() const; 71 HTMLMediaElement* owner() const;
73 72
74 void scheduleChangeEvent(); 73 void scheduleChangeEvent();
74 void removeAllInbandTracks();
75 75
76 private: 76 private:
77 explicit TextTrackList(HTMLMediaElement*); 77 explicit TextTrackList(HTMLMediaElement*);
78 78
79 void scheduleTrackEvent(const AtomicString& eventName, PassRefPtr<TextTrack> ); 79 void scheduleTrackEvent(const AtomicString& eventName, PassRefPtr<TextTrack> );
80 80
81 void scheduleAddTrackEvent(PassRefPtr<TextTrack>); 81 void scheduleAddTrackEvent(PassRefPtr<TextTrack>);
82 void scheduleRemoveTrackEvent(PassRefPtr<TextTrack>); 82 void scheduleRemoveTrackEvent(PassRefPtr<TextTrack>);
83 83
84 void invalidateTrackIndexesAfterTrack(TextTrack*); 84 void invalidateTrackIndexesAfterTrack(TextTrack*);
85 85
86 HTMLMediaElement* m_owner; 86 HTMLMediaElement* m_owner;
87 87
88 OwnPtr<GenericEventQueue> m_asyncEventQueue; 88 OwnPtr<GenericEventQueue> m_asyncEventQueue;
89 89
90 Vector<RefPtr<TextTrack> > m_addTrackTracks; 90 Vector<RefPtr<TextTrack> > m_addTrackTracks;
91 Vector<RefPtr<TextTrack> > m_elementTracks; 91 Vector<RefPtr<TextTrack> > m_elementTracks;
92 Vector<RefPtr<TextTrack> > m_inbandTracks; 92 Vector<RefPtr<TextTrack> > m_inbandTracks;
93 }; 93 };
94 94
95 } // namespace WebCore 95 } // namespace WebCore
96 96
97 #endif 97 #endif
OLDNEW
« no previous file with comments | « Source/core/html/track/TextTrack.cpp ('k') | Source/core/html/track/TextTrackList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698