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

Side by Side Diff: Source/modules/mediasource/SourceBufferList.cpp

Issue 16625011: Add minimal implementation of unprefixed MediaSource API that has feature parity with prefixed API (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer 11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the 12 * in the documentation and/or other materials provided with the
13 * distribution. 13 * distribution.
14 * * Neither the name of Google Inc. nor the names of its 14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from 15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission. 16 * this software without specific prior written permission.
17 * 17 *
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "modules/mediasource/WebKitSourceBufferList.h" 32 #include "modules/mediasource/SourceBufferList.h"
33 33
34 #include "core/dom/Event.h" 34 #include "core/dom/Event.h"
35 #include "core/dom/GenericEventQueue.h" 35 #include "core/dom/GenericEventQueue.h"
36 #include "modules/mediasource/WebKitSourceBuffer.h" 36 #include "modules/mediasource/SourceBuffer.h"
37 37
38 namespace WebCore { 38 namespace WebCore {
39 39
40 WebKitSourceBufferList::WebKitSourceBufferList(ScriptExecutionContext* context, GenericEventQueue* asyncEventQueue) 40 SourceBufferList::SourceBufferList(ScriptExecutionContext* context, GenericEvent Queue* asyncEventQueue)
41 : m_scriptExecutionContext(context) 41 : m_scriptExecutionContext(context)
42 , m_asyncEventQueue(asyncEventQueue) 42 , m_asyncEventQueue(asyncEventQueue)
43 { 43 {
44 ScriptWrappable::init(this); 44 ScriptWrappable::init(this);
45 } 45 }
46 46
47 unsigned long WebKitSourceBufferList::length() const 47 SourceBufferList::~SourceBufferList()
48 {
49 ASSERT(m_list.isEmpty());
50 }
51
52 unsigned long SourceBufferList::length() const
48 { 53 {
49 return m_list.size(); 54 return m_list.size();
adamk 2013/06/10 23:05:40 Any reason not to inline? Similar questions about
acolwell GONE FROM CHROMIUM 2013/06/10 23:36:15 Done for all non-virtual methods. It isn't clear f
50 } 55 }
51 56
52 WebKitSourceBuffer* WebKitSourceBufferList::item(unsigned index) const 57 SourceBuffer* SourceBufferList::item(unsigned index) const
53 { 58 {
54 if (index >= m_list.size()) 59 if (index >= m_list.size())
55 return 0; 60 return 0;
56 return m_list[index].get(); 61 return m_list[index].get();
57 } 62 }
58 63
59 void WebKitSourceBufferList::add(PassRefPtr<WebKitSourceBuffer> buffer) 64 void SourceBufferList::add(PassRefPtr<SourceBuffer> buffer)
60 { 65 {
61 m_list.append(buffer); 66 m_list.append(buffer);
62 createAndFireEvent(eventNames().webkitaddsourcebufferEvent); 67 createAndFireEvent(eventNames().addsourcebufferEvent);
63 } 68 }
64 69
65 bool WebKitSourceBufferList::remove(WebKitSourceBuffer* buffer) 70 bool SourceBufferList::contains(SourceBuffer* buffer)
71 {
72 return m_list.find(buffer) != notFound;
73 }
74
75 void SourceBufferList::remove(SourceBuffer* buffer)
66 { 76 {
67 size_t index = m_list.find(buffer); 77 size_t index = m_list.find(buffer);
68 if (index == notFound) 78 if (index == notFound)
69 return false; 79 return;
70
71 buffer->removedFromMediaSource();
72 m_list.remove(index); 80 m_list.remove(index);
73 createAndFireEvent(eventNames().webkitremovesourcebufferEvent); 81 createAndFireEvent(eventNames().removesourcebufferEvent);
74 return true;
75 } 82 }
76 83
77 void WebKitSourceBufferList::clear() 84 void SourceBufferList::clear()
78 { 85 {
79 for (size_t i = 0; i < m_list.size(); ++i)
80 m_list[i]->removedFromMediaSource();
81 m_list.clear(); 86 m_list.clear();
82 createAndFireEvent(eventNames().webkitremovesourcebufferEvent); 87 createAndFireEvent(eventNames().removesourcebufferEvent);
83 } 88 }
84 89
85 void WebKitSourceBufferList::createAndFireEvent(const AtomicString& eventName) 90 void SourceBufferList::createAndFireEvent(const AtomicString& eventName)
86 { 91 {
87 ASSERT(m_asyncEventQueue); 92 ASSERT(m_asyncEventQueue);
88 93
89 RefPtr<Event> event = Event::create(eventName, false, false); 94 RefPtr<Event> event = Event::create(eventName, false, false);
90 event->setTarget(this); 95 event->setTarget(this);
91 96
92 m_asyncEventQueue->enqueueEvent(event.release()); 97 m_asyncEventQueue->enqueueEvent(event.release());
93 } 98 }
94 99
95 const AtomicString& WebKitSourceBufferList::interfaceName() const 100 const AtomicString& SourceBufferList::interfaceName() const
96 { 101 {
97 return eventNames().interfaceForWebKitSourceBufferList; 102 return eventNames().interfaceForSourceBufferList;
98 } 103 }
99 104
100 ScriptExecutionContext* WebKitSourceBufferList::scriptExecutionContext() const 105 ScriptExecutionContext* SourceBufferList::scriptExecutionContext() const
101 { 106 {
102 return m_scriptExecutionContext; 107 return m_scriptExecutionContext;
103 } 108 }
104 109
105 EventTargetData* WebKitSourceBufferList::eventTargetData() 110 EventTargetData* SourceBufferList::eventTargetData()
106 { 111 {
107 return &m_eventTargetData; 112 return &m_eventTargetData;
108 } 113 }
109 114
110 EventTargetData* WebKitSourceBufferList::ensureEventTargetData() 115 EventTargetData* SourceBufferList::ensureEventTargetData()
111 { 116 {
112 return &m_eventTargetData; 117 return &m_eventTargetData;
113 } 118 }
114 119
115 } // namespace WebCore 120 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698