OLD | NEW |
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/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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 channel()->SetSink(std::move(sink)); | 160 channel()->SetSink(std::move(sink)); |
161 } | 161 } |
162 | 162 |
163 Channel* ChannelProxy::channel() const { | 163 Channel* ChannelProxy::channel() const { |
164 RTC_DCHECK(channel_owner_.channel()); | 164 RTC_DCHECK(channel_owner_.channel()); |
165 return channel_owner_.channel(); | 165 return channel_owner_.channel(); |
166 } | 166 } |
167 | 167 |
168 } // namespace voe | 168 } // namespace voe |
169 } // namespace webrtc | 169 } // namespace webrtc |
OLD | NEW |