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

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

Issue 2969623003: Update includes for webrtc/{base => rtc_base} rename (2/3) (Closed)
Patch Set: Rebased onto 224e65939af87443addfc5bb500fbf434728bd1c and restored sorting in clock.cc Created 3 years, 5 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
« no previous file with comments | « webrtc/voice_engine/channel_manager.cc ('k') | webrtc/voice_engine/channel_proxy.cc » ('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) 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 #ifndef WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ 11 #ifndef WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_
12 #define WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ 12 #define WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_
13 13
14 #include "webrtc/api/audio/audio_mixer.h" 14 #include "webrtc/api/audio/audio_mixer.h"
15 #include "webrtc/api/audio_codecs/audio_encoder.h" 15 #include "webrtc/api/audio_codecs/audio_encoder.h"
16 #include "webrtc/api/rtpreceiverinterface.h" 16 #include "webrtc/api/rtpreceiverinterface.h"
17 #include "webrtc/base/constructormagic.h"
18 #include "webrtc/base/race_checker.h"
19 #include "webrtc/base/thread_checker.h"
20 #include "webrtc/call/rtp_packet_sink_interface.h" 17 #include "webrtc/call/rtp_packet_sink_interface.h"
18 #include "webrtc/rtc_base/constructormagic.h"
19 #include "webrtc/rtc_base/race_checker.h"
20 #include "webrtc/rtc_base/thread_checker.h"
21 #include "webrtc/voice_engine/channel_manager.h" 21 #include "webrtc/voice_engine/channel_manager.h"
22 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h" 22 #include "webrtc/voice_engine/include/voe_rtp_rtcp.h"
23 23
24 #include <memory> 24 #include <memory>
25 #include <string> 25 #include <string>
26 #include <vector> 26 #include <vector>
27 27
28 namespace webrtc { 28 namespace webrtc {
29 29
30 class AudioSinkInterface; 30 class AudioSinkInterface;
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 rtc::RaceChecker audio_thread_race_checker_; 138 rtc::RaceChecker audio_thread_race_checker_;
139 rtc::RaceChecker video_capture_thread_race_checker_; 139 rtc::RaceChecker video_capture_thread_race_checker_;
140 ChannelOwner channel_owner_; 140 ChannelOwner channel_owner_;
141 141
142 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy); 142 RTC_DISALLOW_COPY_AND_ASSIGN(ChannelProxy);
143 }; 143 };
144 } // namespace voe 144 } // namespace voe
145 } // namespace webrtc 145 } // namespace webrtc
146 146
147 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_ 147 #endif // WEBRTC_VOICE_ENGINE_CHANNEL_PROXY_H_
OLDNEW
« no previous file with comments | « webrtc/voice_engine/channel_manager.cc ('k') | webrtc/voice_engine/channel_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698