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

Side by Side Diff: talk/app/webrtc/fakemediacontroller.h

Issue 1670153003: Introduce struct MediaConfig, with construction-time settings. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 10 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 | « no previous file | talk/app/webrtc/mediacontroller.h » ('j') | talk/app/webrtc/mediacontroller.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * libjingle 2 * libjingle
3 * Copyright 2015 Google Inc. 3 * Copyright 2015 Google Inc.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met: 6 * modification, are permitted provided that the following conditions are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright notice, 8 * 1. Redistributions of source code must retain the above copyright notice,
9 * this list of conditions and the following disclaimer. 9 * this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright notice, 10 * 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 28 matching lines...) Expand all
39 webrtc::Call* call) 39 webrtc::Call* call)
40 : channel_manager_(channel_manager), call_(call) { 40 : channel_manager_(channel_manager), call_(call) {
41 RTC_DCHECK(nullptr != channel_manager_); 41 RTC_DCHECK(nullptr != channel_manager_);
42 RTC_DCHECK(nullptr != call_); 42 RTC_DCHECK(nullptr != call_);
43 } 43 }
44 ~FakeMediaController() override {} 44 ~FakeMediaController() override {}
45 webrtc::Call* call_w() override { return call_; } 45 webrtc::Call* call_w() override { return call_; }
46 cricket::ChannelManager* channel_manager() const override { 46 cricket::ChannelManager* channel_manager() const override {
47 return channel_manager_; 47 return channel_manager_;
48 } 48 }
49 const webrtc::MediaConfig* config() const override {
pthatcher1 2016/02/05 17:11:30 I'd say make it a reference.
50 static const webrtc::MediaConfig media_config = webrtc::MediaConfig();
51 return &media_config;
52 }
49 53
50 private: 54 private:
51 cricket::ChannelManager* channel_manager_; 55 cricket::ChannelManager* channel_manager_;
52 webrtc::Call* call_; 56 webrtc::Call* call_;
53 }; 57 };
54 } // namespace cricket 58 } // namespace cricket
55 #endif // TALK_APP_WEBRTC_FAKEMEDIACONTROLLER_H_ 59 #endif // TALK_APP_WEBRTC_FAKEMEDIACONTROLLER_H_
OLDNEW
« no previous file with comments | « no previous file | talk/app/webrtc/mediacontroller.h » ('j') | talk/app/webrtc/mediacontroller.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698