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

Side by Side Diff: webrtc/api/peerconnectionfactory.h

Issue 1748403002: Move RtcEventLog object from inside VoiceEngine to Call. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Updated RTP/RTCP module to use setter methods instead of passing the event log pointer in the const… Created 4 years, 9 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 2011 The WebRTC project authors. All Rights Reserved. 2 * Copyright 2011 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
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 rtc::scoped_refptr<VideoTrackInterface> 60 rtc::scoped_refptr<VideoTrackInterface>
61 CreateVideoTrack(const std::string& id, 61 CreateVideoTrack(const std::string& id,
62 VideoSourceInterface* video_source) override; 62 VideoSourceInterface* video_source) override;
63 63
64 rtc::scoped_refptr<AudioTrackInterface> 64 rtc::scoped_refptr<AudioTrackInterface>
65 CreateAudioTrack(const std::string& id, 65 CreateAudioTrack(const std::string& id,
66 AudioSourceInterface* audio_source) override; 66 AudioSourceInterface* audio_source) override;
67 67
68 bool StartAecDump(rtc::PlatformFile file, int64_t max_size_bytes) override; 68 bool StartAecDump(rtc::PlatformFile file, int64_t max_size_bytes) override;
69 void StopAecDump() override; 69 void StopAecDump() override;
70 bool StartRtcEventLog(rtc::PlatformFile file) override; 70 bool StartRtcEventLog(rtc::PlatformFile file) override { return false; }
the sun 2016/03/03 09:25:12 Add a TODO that these should be removed
ivoc 2016/03/10 13:15:36 Done.
71 void StopRtcEventLog() override; 71 void StopRtcEventLog() override {}
72 72
73 virtual webrtc::MediaControllerInterface* CreateMediaController( 73 virtual webrtc::MediaControllerInterface* CreateMediaController(
74 const cricket::MediaConfig& config) const; 74 const cricket::MediaConfig& config) const;
75 virtual rtc::Thread* signaling_thread(); 75 virtual rtc::Thread* signaling_thread();
76 virtual rtc::Thread* worker_thread(); 76 virtual rtc::Thread* worker_thread();
77 const Options& options() const { return options_; } 77 const Options& options() const { return options_; }
78 78
79 protected: 79 protected:
80 PeerConnectionFactory(); 80 PeerConnectionFactory();
81 PeerConnectionFactory( 81 PeerConnectionFactory(
(...skipping 25 matching lines...) Expand all
107 video_decoder_factory_; 107 video_decoder_factory_;
108 rtc::scoped_ptr<rtc::BasicNetworkManager> default_network_manager_; 108 rtc::scoped_ptr<rtc::BasicNetworkManager> default_network_manager_;
109 rtc::scoped_ptr<rtc::BasicPacketSocketFactory> default_socket_factory_; 109 rtc::scoped_ptr<rtc::BasicPacketSocketFactory> default_socket_factory_;
110 110
111 rtc::scoped_refptr<RefCountedDtlsIdentityStore> dtls_identity_store_; 111 rtc::scoped_refptr<RefCountedDtlsIdentityStore> dtls_identity_store_;
112 }; 112 };
113 113
114 } // namespace webrtc 114 } // namespace webrtc
115 115
116 #endif // WEBRTC_API_PEERCONNECTIONFACTORY_H_ 116 #endif // WEBRTC_API_PEERCONNECTIONFACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698