Chromium Code Reviews| Index: talk/app/webrtc/mediacontroller.h |
| diff --git a/talk/app/webrtc/mediacontroller.h b/talk/app/webrtc/mediacontroller.h |
| index 68798515d00984c586a88fbf8346f75ca96f309b..8fa72c6e18f9850641a86212365af84ca9e470ac 100644 |
| --- a/talk/app/webrtc/mediacontroller.h |
| +++ b/talk/app/webrtc/mediacontroller.h |
| @@ -29,6 +29,7 @@ |
| #define TALK_APP_WEBRTC_MEDIACONTROLLER_H_ |
| #include "webrtc/base/thread.h" |
| +#include "webrtc/common_types.h" |
| namespace webrtc { |
| class Call; |
| @@ -43,6 +44,8 @@ class MediaControllerInterface { |
| virtual ~MediaControllerInterface() {} |
| virtual webrtc::Call* call_w() = 0; |
| + |
| + virtual void OnPacketSent(const webrtc::SentPacket& sent_packet) = 0; |
|
pthatcher1
2015/10/05 18:30:13
Are we sure that packet_ids will not collide when
pthatcher1
2015/10/05 18:30:13
Why would a caller call media_controller_->OnPacke
stefan-webrtc
2015/10/06 13:00:19
That is the point with this packet id. It's a sequ
pthatcher1
2015/10/06 20:23:55
Each port only has one PC, yes.
|
| }; |
| } // namespace webrtc |