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

Side by Side Diff: webrtc/voice_engine/include/voe_base.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/file_recorder.cc ('k') | webrtc/voice_engine/output_mixer.h » ('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) 2012 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2012 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
(...skipping 17 matching lines...) Expand all
28 // ... 28 // ...
29 // base->DeleteChannel(ch); 29 // base->DeleteChannel(ch);
30 // base->Terminate(); 30 // base->Terminate();
31 // base->Release(); 31 // base->Release();
32 // VoiceEngine::Delete(voe); 32 // VoiceEngine::Delete(voe);
33 // 33 //
34 #ifndef WEBRTC_VOICE_ENGINE_VOE_BASE_H 34 #ifndef WEBRTC_VOICE_ENGINE_VOE_BASE_H
35 #define WEBRTC_VOICE_ENGINE_VOE_BASE_H 35 #define WEBRTC_VOICE_ENGINE_VOE_BASE_H
36 36
37 #include "webrtc/api/audio_codecs/audio_decoder_factory.h" 37 #include "webrtc/api/audio_codecs/audio_decoder_factory.h"
38 #include "webrtc/base/scoped_ref_ptr.h"
39 #include "webrtc/common_types.h" 38 #include "webrtc/common_types.h"
40 #include "webrtc/modules/audio_coding/include/audio_coding_module.h" 39 #include "webrtc/modules/audio_coding/include/audio_coding_module.h"
40 #include "webrtc/rtc_base/scoped_ref_ptr.h"
41 41
42 namespace webrtc { 42 namespace webrtc {
43 43
44 class AudioDeviceModule; 44 class AudioDeviceModule;
45 class AudioProcessing; 45 class AudioProcessing;
46 class AudioTransport; 46 class AudioTransport;
47 namespace voe { 47 namespace voe {
48 class TransmitMixer; 48 class TransmitMixer;
49 } // namespace voe 49 } // namespace voe
50 50
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 virtual int AssociateSendChannel(int channel, int accociate_send_channel) = 0; 203 virtual int AssociateSendChannel(int channel, int accociate_send_channel) = 0;
204 204
205 protected: 205 protected:
206 VoEBase() {} 206 VoEBase() {}
207 virtual ~VoEBase() {} 207 virtual ~VoEBase() {}
208 }; 208 };
209 209
210 } // namespace webrtc 210 } // namespace webrtc
211 211
212 #endif // WEBRTC_VOICE_ENGINE_VOE_BASE_H 212 #endif // WEBRTC_VOICE_ENGINE_VOE_BASE_H
OLDNEW
« no previous file with comments | « webrtc/voice_engine/file_recorder.cc ('k') | webrtc/voice_engine/output_mixer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698