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

Side by Side Diff: webrtc/media/engine/webrtcvoiceengine_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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2008 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2008 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 <memory> 11 #include <memory>
12 12
13 #include "webrtc/pc/channel.h" 13 #include "webrtc/pc/channel.h"
14 #include "webrtc/base/arraysize.h" 14 #include "webrtc/base/arraysize.h"
15 #include "webrtc/base/byteorder.h" 15 #include "webrtc/base/byteorder.h"
16 #include "webrtc/base/gunit.h" 16 #include "webrtc/base/gunit.h"
17 #include "webrtc/call.h" 17 #include "webrtc/call/call.h"
18 #include "webrtc/p2p/base/faketransportcontroller.h" 18 #include "webrtc/p2p/base/faketransportcontroller.h"
19 #include "webrtc/test/field_trial.h" 19 #include "webrtc/test/field_trial.h"
20 #include "webrtc/logging/rtc_event_log/rtc_event_log.h" 20 #include "webrtc/logging/rtc_event_log/rtc_event_log.h"
21 #include "webrtc/media/base/fakemediaengine.h" 21 #include "webrtc/media/base/fakemediaengine.h"
22 #include "webrtc/media/base/fakenetworkinterface.h" 22 #include "webrtc/media/base/fakenetworkinterface.h"
23 #include "webrtc/media/base/fakertp.h" 23 #include "webrtc/media/base/fakertp.h"
24 #include "webrtc/media/base/mediaconstants.h" 24 #include "webrtc/media/base/mediaconstants.h"
25 #include "webrtc/media/engine/fakewebrtccall.h" 25 #include "webrtc/media/engine/fakewebrtccall.h"
26 #include "webrtc/media/engine/fakewebrtcvoiceengine.h" 26 #include "webrtc/media/engine/fakewebrtcvoiceengine.h"
27 #include "webrtc/media/engine/webrtcvoiceengine.h" 27 #include "webrtc/media/engine/webrtcvoiceengine.h"
(...skipping 3578 matching lines...) Expand 10 before | Expand all | Expand 10 after
3606 nullptr, webrtc::CreateBuiltinAudioDecoderFactory()); 3606 nullptr, webrtc::CreateBuiltinAudioDecoderFactory());
3607 webrtc::RtcEventLogNullImpl event_log; 3607 webrtc::RtcEventLogNullImpl event_log;
3608 std::unique_ptr<webrtc::Call> call( 3608 std::unique_ptr<webrtc::Call> call(
3609 webrtc::Call::Create(webrtc::Call::Config(&event_log))); 3609 webrtc::Call::Create(webrtc::Call::Config(&event_log)));
3610 cricket::WebRtcVoiceMediaChannel channel(&engine, cricket::MediaConfig(), 3610 cricket::WebRtcVoiceMediaChannel channel(&engine, cricket::MediaConfig(),
3611 cricket::AudioOptions(), call.get()); 3611 cricket::AudioOptions(), call.get());
3612 cricket::AudioRecvParameters parameters; 3612 cricket::AudioRecvParameters parameters;
3613 parameters.codecs = engine.recv_codecs(); 3613 parameters.codecs = engine.recv_codecs();
3614 EXPECT_TRUE(channel.SetRecvParameters(parameters)); 3614 EXPECT_TRUE(channel.SetRecvParameters(parameters));
3615 } 3615 }
OLDNEW
« no previous file with comments | « webrtc/media/engine/webrtcvoiceengine.h ('k') | webrtc/modules/audio_coding/neteq/tools/rtc_event_log_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698