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

Side by Side Diff: webrtc/call/call_unittest.cc

Issue 2550273003: Moved call.h and most of api/call/* into call/ (Closed)
Patch Set: Added <set> include after presubmit complained. Created 4 years 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/call/call_perf_tests.cc ('k') | webrtc/call/rampup_tests.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) 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 <list> 11 #include <list>
12 #include <memory> 12 #include <memory>
13 13
14 #include "webrtc/api/call/audio_state.h" 14 #include "webrtc/call/audio_state.h"
15 #include "webrtc/call.h" 15 #include "webrtc/call/call.h"
16 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" 16 #include "webrtc/logging/rtc_event_log/rtc_event_log.h"
17 #include "webrtc/modules/audio_coding/codecs/mock/mock_audio_decoder_factory.h"
17 #include "webrtc/modules/audio_mixer/audio_mixer_impl.h" 18 #include "webrtc/modules/audio_mixer/audio_mixer_impl.h"
18 #include "webrtc/modules/audio_coding/codecs/mock/mock_audio_decoder_factory.h"
19 #include "webrtc/test/gtest.h" 19 #include "webrtc/test/gtest.h"
20 #include "webrtc/test/mock_voice_engine.h" 20 #include "webrtc/test/mock_voice_engine.h"
21 21
22 namespace { 22 namespace {
23 23
24 struct CallHelper { 24 struct CallHelper {
25 explicit CallHelper( 25 explicit CallHelper(
26 rtc::scoped_refptr<webrtc::AudioDecoderFactory> decoder_factory = nullptr) 26 rtc::scoped_refptr<webrtc::AudioDecoderFactory> decoder_factory = nullptr)
27 : voice_engine_(decoder_factory) { 27 : voice_engine_(decoder_factory) {
28 webrtc::AudioState::Config audio_state_config; 28 webrtc::AudioState::Config audio_state_config;
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 stream = call->CreateFlexfecReceiveStream(config); 284 stream = call->CreateFlexfecReceiveStream(config);
285 EXPECT_NE(stream, nullptr); 285 EXPECT_NE(stream, nullptr);
286 streams.push_back(stream); 286 streams.push_back(stream);
287 287
288 for (auto s : streams) { 288 for (auto s : streams) {
289 call->DestroyFlexfecReceiveStream(s); 289 call->DestroyFlexfecReceiveStream(s);
290 } 290 }
291 } 291 }
292 292
293 } // namespace webrtc 293 } // namespace webrtc
OLDNEW
« no previous file with comments | « webrtc/call/call_perf_tests.cc ('k') | webrtc/call/rampup_tests.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698