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

Unified Diff: talk/session/media/channelmanager_unittest.cc

Issue 1363573002: Wire up transport sequence number / send time callbacks to webrtc via libjingle. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: More ios deps Created 5 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: talk/session/media/channelmanager_unittest.cc
diff --git a/talk/session/media/channelmanager_unittest.cc b/talk/session/media/channelmanager_unittest.cc
index 6074d6431a1c5586ce30c0640ae661f46f1e86e0..81a143519b1294152c6066a4adc685c56e5bec43 100644
--- a/talk/session/media/channelmanager_unittest.cc
+++ b/talk/session/media/channelmanager_unittest.cc
@@ -53,10 +53,12 @@ static const VideoCodec kVideoCodecs[] = {
class FakeMediaController : public webrtc::MediaControllerInterface {
public:
explicit FakeMediaController(webrtc::Call* call) : call_(call) {
- RTC_DCHECK(nullptr != call);
+ RTC_DCHECK(nullptr != call_);
}
~FakeMediaController() override {}
webrtc::Call* call_w() override { return call_; }
+ void ConnectToSignalSentPacket_w(
+ cricket::TransportChannel* transport_channel) override {}
private:
webrtc::Call* call_;

Powered by Google App Engine
This is Rietveld 408576698