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

Side by Side Diff: webrtc/call/call.h

Issue 2997883002: Video/Screenshare loopback tool.
Patch Set: Rebase Created 3 years, 3 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 | webrtc/call/call.cc » ('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_CALL_CALL_H_ 10 #ifndef WEBRTC_CALL_CALL_H_
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 MediaType media, 193 MediaType media,
194 int transport_overhead_per_packet) = 0; 194 int transport_overhead_per_packet) = 0;
195 195
196 virtual void OnNetworkRouteChanged( 196 virtual void OnNetworkRouteChanged(
197 const std::string& transport_name, 197 const std::string& transport_name,
198 const rtc::NetworkRoute& network_route) = 0; 198 const rtc::NetworkRoute& network_route) = 0;
199 199
200 virtual void OnSentPacket(const rtc::SentPacket& sent_packet) = 0; 200 virtual void OnSentPacket(const rtc::SentPacket& sent_packet) = 0;
201 201
202 virtual ~Call() {} 202 virtual ~Call() {}
203
204 virtual void PrintDebugStuff() = 0;
205
206 bool print_ = false;
203 }; 207 };
204 208
205 } // namespace webrtc 209 } // namespace webrtc
206 210
207 #endif // WEBRTC_CALL_CALL_H_ 211 #endif // WEBRTC_CALL_CALL_H_
OLDNEW
« no previous file with comments | « no previous file | webrtc/call/call.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698