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

Side by Side Diff: webrtc/test/fake_audio_device.h

Issue 1942823002: Remove webrtc/base/scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: fix additional scoped_ptr uses that had been added 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
« no previous file with comments | « webrtc/test/direct_transport.h ('k') | webrtc/test/fake_network_pipe.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) 2013 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2013 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 #ifndef WEBRTC_TEST_FAKE_AUDIO_DEVICE_H_ 10 #ifndef WEBRTC_TEST_FAKE_AUDIO_DEVICE_H_
11 #define WEBRTC_TEST_FAKE_AUDIO_DEVICE_H_ 11 #define WEBRTC_TEST_FAKE_AUDIO_DEVICE_H_
12 12
13 #include <memory> 13 #include <memory>
14 #include <string> 14 #include <string>
15 15
16 #include "webrtc/base/criticalsection.h" 16 #include "webrtc/base/criticalsection.h"
17 #include "webrtc/base/platform_thread.h" 17 #include "webrtc/base/platform_thread.h"
18 #include "webrtc/base/scoped_ptr.h"
19 #include "webrtc/modules/audio_device/include/fake_audio_device.h" 18 #include "webrtc/modules/audio_device/include/fake_audio_device.h"
20 #include "webrtc/test/drifting_clock.h" 19 #include "webrtc/test/drifting_clock.h"
21 #include "webrtc/typedefs.h" 20 #include "webrtc/typedefs.h"
22 21
23 namespace webrtc { 22 namespace webrtc {
24 23
25 class Clock; 24 class Clock;
26 class EventTimerWrapper; 25 class EventTimerWrapper;
27 class FileWrapper; 26 class FileWrapper;
28 class ModuleFileUtility; 27 class ModuleFileUtility;
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 std::unique_ptr<EventTimerWrapper> tick_; 62 std::unique_ptr<EventTimerWrapper> tick_;
64 rtc::CriticalSection lock_; 63 rtc::CriticalSection lock_;
65 rtc::PlatformThread thread_; 64 rtc::PlatformThread thread_;
66 std::unique_ptr<ModuleFileUtility> file_utility_; 65 std::unique_ptr<ModuleFileUtility> file_utility_;
67 std::unique_ptr<FileWrapper> input_stream_; 66 std::unique_ptr<FileWrapper> input_stream_;
68 }; 67 };
69 } // namespace test 68 } // namespace test
70 } // namespace webrtc 69 } // namespace webrtc
71 70
72 #endif // WEBRTC_TEST_FAKE_AUDIO_DEVICE_H_ 71 #endif // WEBRTC_TEST_FAKE_AUDIO_DEVICE_H_
OLDNEW
« no previous file with comments | « webrtc/test/direct_transport.h ('k') | webrtc/test/fake_network_pipe.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698