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

Side by Side Diff: Source/modules/mediastream/RTCStatsRequestImpl.cpp

Issue 16753003: Revert "Remove MediaStreamDescriptor and call/use WebMediaStream directly" (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) 2012 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 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
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN Y 13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN Y
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 15 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN Y 16 * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN Y
17 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 17 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 18 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N 19 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O N
20 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 20 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 22 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23 */ 23 */
24 24
25 #include "config.h" 25 #include "config.h"
26 26
27 #include "modules/mediastream/RTCStatsRequestImpl.h" 27 #include "modules/mediastream/RTCStatsRequestImpl.h"
28 28
29 #include "core/platform/mediastream/MediaStreamComponent.h"
30 #include "core/platform/mediastream/RTCStatsRequest.h" 29 #include "core/platform/mediastream/RTCStatsRequest.h"
31 #include "modules/mediastream/MediaStreamTrack.h" 30 #include "modules/mediastream/MediaStreamTrack.h"
32 #include "modules/mediastream/RTCStatsCallback.h" 31 #include "modules/mediastream/RTCStatsCallback.h"
33 #include "modules/mediastream/RTCStatsResponse.h" 32 #include "modules/mediastream/RTCStatsResponse.h"
34 33
35 namespace WebCore { 34 namespace WebCore {
36 35
37 PassRefPtr<RTCStatsRequestImpl> RTCStatsRequestImpl::create(ScriptExecutionConte xt* context, PassRefPtr<RTCStatsCallback> callback, PassRefPtr<MediaStreamTrack> selector) 36 PassRefPtr<RTCStatsRequestImpl> RTCStatsRequestImpl::create(ScriptExecutionConte xt* context, PassRefPtr<RTCStatsCallback> callback, PassRefPtr<MediaStreamTrack> selector)
38 { 37 {
39 RefPtr<RTCStatsRequestImpl> request = adoptRef(new RTCStatsRequestImpl(conte xt, callback, selector)); 38 RefPtr<RTCStatsRequestImpl> request = adoptRef(new RTCStatsRequestImpl(conte xt, callback, selector));
40 request->suspendIfNeeded(); 39 request->suspendIfNeeded();
41 return request.release(); 40 return request.release();
42 } 41 }
43 42
44 RTCStatsRequestImpl::RTCStatsRequestImpl(ScriptExecutionContext* context, PassRe fPtr<RTCStatsCallback> callback, PassRefPtr<MediaStreamTrack> selector) 43 RTCStatsRequestImpl::RTCStatsRequestImpl(ScriptExecutionContext* context, PassRe fPtr<RTCStatsCallback> callback, PassRefPtr<MediaStreamTrack> selector)
45 : ActiveDOMObject(context) 44 : ActiveDOMObject(context)
46 , m_successCallback(callback) 45 , m_successCallback(callback)
46 , m_stream(selector ? selector->component()->stream() : 0)
47 , m_component(selector ? selector->component() : 0) 47 , m_component(selector ? selector->component() : 0)
48 { 48 {
49 if (selector)
50 m_webStream = selector->component()->stream();
51 } 49 }
52 50
53 RTCStatsRequestImpl::~RTCStatsRequestImpl() 51 RTCStatsRequestImpl::~RTCStatsRequestImpl()
54 { 52 {
55 } 53 }
56 54
57 PassRefPtr<RTCStatsResponseBase> RTCStatsRequestImpl::createResponse() 55 PassRefPtr<RTCStatsResponseBase> RTCStatsRequestImpl::createResponse()
58 { 56 {
59 return RTCStatsResponse::create(); 57 return RTCStatsResponse::create();
60 } 58 }
61 59
62 bool RTCStatsRequestImpl::hasSelector() 60 bool RTCStatsRequestImpl::hasSelector()
63 { 61 {
64 return !(m_webStream.isNull()); 62 return m_stream;
65 } 63 }
66 64
67 WebKit::WebMediaStream RTCStatsRequestImpl::stream() 65 MediaStreamDescriptor* RTCStatsRequestImpl::stream()
68 { 66 {
69 return m_webStream; 67 return m_stream.get();
70 } 68 }
71 69
72 MediaStreamComponent* RTCStatsRequestImpl::component() 70 MediaStreamComponent* RTCStatsRequestImpl::component()
73 { 71 {
74 return m_component.get(); 72 return m_component.get();
75 } 73 }
76 74
77 void RTCStatsRequestImpl::requestSucceeded(PassRefPtr<RTCStatsResponseBase> resp onse) 75 void RTCStatsRequestImpl::requestSucceeded(PassRefPtr<RTCStatsResponseBase> resp onse)
78 { 76 {
79 if (!m_successCallback) 77 if (!m_successCallback)
80 return; 78 return;
81 m_successCallback->handleEvent(static_cast<RTCStatsResponse*>(response.get() )); 79 m_successCallback->handleEvent(static_cast<RTCStatsResponse*>(response.get() ));
82 clear(); 80 clear();
83 } 81 }
84 82
85 void RTCStatsRequestImpl::stop() 83 void RTCStatsRequestImpl::stop()
86 { 84 {
87 clear(); 85 clear();
88 } 86 }
89 87
90 void RTCStatsRequestImpl::clear() 88 void RTCStatsRequestImpl::clear()
91 { 89 {
92 m_successCallback.clear(); 90 m_successCallback.clear();
93 } 91 }
94 92
95 93
96 } // namespace WebCore 94 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/modules/mediastream/RTCStatsRequestImpl.h ('k') | Source/modules/mediastream/UserMediaRequest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698