Chromium Code Reviews

Side by Side Diff: webrtc/voice_engine/channel_proxy.cc

Issue 2059703002: Move webrtc/audio_*.h to webrtc/api/call (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixed audio_sink.h Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 10
11 #include "webrtc/voice_engine/channel_proxy.h" 11 #include "webrtc/voice_engine/channel_proxy.h"
12 12
13 #include <utility> 13 #include <utility>
14 14
15 #include "webrtc/audio_sink.h" 15 #include "webrtc/api/audio/audio_sink.h"
16 #include "webrtc/base/checks.h" 16 #include "webrtc/base/checks.h"
17 #include "webrtc/voice_engine/channel.h" 17 #include "webrtc/voice_engine/channel.h"
18 18
19 namespace webrtc { 19 namespace webrtc {
20 namespace voe { 20 namespace voe {
21 ChannelProxy::ChannelProxy() : channel_owner_(nullptr) {} 21 ChannelProxy::ChannelProxy() : channel_owner_(nullptr) {}
22 22
23 ChannelProxy::ChannelProxy(const ChannelOwner& channel_owner) : 23 ChannelProxy::ChannelProxy(const ChannelOwner& channel_owner) :
24 channel_owner_(channel_owner) { 24 channel_owner_(channel_owner) {
25 RTC_CHECK(channel_owner_.channel()); 25 RTC_CHECK(channel_owner_.channel());
(...skipping 155 matching lines...)
181 return channel()->ReceivedRTCPPacket(packet, length) == 0; 181 return channel()->ReceivedRTCPPacket(packet, length) == 0;
182 } 182 }
183 183
184 Channel* ChannelProxy::channel() const { 184 Channel* ChannelProxy::channel() const {
185 RTC_DCHECK(channel_owner_.channel()); 185 RTC_DCHECK(channel_owner_.channel());
186 return channel_owner_.channel(); 186 return channel_owner_.channel();
187 } 187 }
188 188
189 } // namespace voe 189 } // namespace voe
190 } // namespace webrtc 190 } // namespace webrtc
OLDNEW

Powered by Google App Engine