| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |