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

Side by Side Diff: webrtc/media/engine/webrtcvoe.h

Issue 1937693002: Replace scoped_ptr with unique_ptr everywhere (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@unique5
Patch Set: Created 4 years, 7 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2004 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2004 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_MEDIA_ENGINE_WEBRTCVOE_H_ 11 #ifndef WEBRTC_MEDIA_ENGINE_WEBRTCVOE_H_
12 #define WEBRTC_MEDIA_ENGINE_WEBRTCVOE_H_ 12 #define WEBRTC_MEDIA_ENGINE_WEBRTCVOE_H_
13 13
14 #include <memory>
15
14 #include "webrtc/base/common.h" 16 #include "webrtc/base/common.h"
15 #include "webrtc/media/engine/webrtccommon.h" 17 #include "webrtc/media/engine/webrtccommon.h"
16 18
17 #include "webrtc/common_types.h" 19 #include "webrtc/common_types.h"
18 #include "webrtc/modules/audio_device/include/audio_device.h" 20 #include "webrtc/modules/audio_device/include/audio_device.h"
19 #include "webrtc/voice_engine/include/voe_audio_processing.h" 21 #include "webrtc/voice_engine/include/voe_audio_processing.h"
20 #include "webrtc/voice_engine/include/voe_base.h" 22 #include "webrtc/voice_engine/include/voe_base.h"
21 #include "webrtc/voice_engine/include/voe_codec.h" 23 #include "webrtc/voice_engine/include/voe_codec.h"
22 #include "webrtc/voice_engine/include/voe_errors.h" 24 #include "webrtc/voice_engine/include/voe_errors.h"
23 #include "webrtc/voice_engine/include/voe_hardware.h" 25 #include "webrtc/voice_engine/include/voe_hardware.h"
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 scoped_voe_ptr<webrtc::VoEAudioProcessing> processing_; 108 scoped_voe_ptr<webrtc::VoEAudioProcessing> processing_;
107 scoped_voe_ptr<webrtc::VoEBase> base_; 109 scoped_voe_ptr<webrtc::VoEBase> base_;
108 scoped_voe_ptr<webrtc::VoECodec> codec_; 110 scoped_voe_ptr<webrtc::VoECodec> codec_;
109 scoped_voe_ptr<webrtc::VoEHardware> hw_; 111 scoped_voe_ptr<webrtc::VoEHardware> hw_;
110 scoped_voe_ptr<webrtc::VoERTP_RTCP> rtp_; 112 scoped_voe_ptr<webrtc::VoERTP_RTCP> rtp_;
111 scoped_voe_ptr<webrtc::VoEVolumeControl> volume_; 113 scoped_voe_ptr<webrtc::VoEVolumeControl> volume_;
112 }; 114 };
113 } // namespace cricket 115 } // namespace cricket
114 116
115 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVOE_H_ 117 #endif // WEBRTC_MEDIA_ENGINE_WEBRTCVOE_H_
OLDNEW
« no previous file with comments | « webrtc/media/base/videocapturer_unittest.cc ('k') | webrtc/modules/audio_coding/codecs/audio_decoder_factory_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698