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

Unified Diff: remoting/protocol/connection_to_client.h

Issue 850983002: Implement video frame acknowledgements in the chromoting protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: remoting/protocol/connection_to_client.h
diff --git a/remoting/protocol/connection_to_client.h b/remoting/protocol/connection_to_client.h
index 11f4a3404a350792ec0f401fa5ddf0d55bb79a09..3fa8a75fbb8ba5066e96a9ee40b5993f7b67bc44 100644
--- a/remoting/protocol/connection_to_client.h
+++ b/remoting/protocol/connection_to_client.h
@@ -25,7 +25,7 @@ class HostEventDispatcher;
class HostStub;
class HostVideoDispatcher;
class InputStub;
-class VideoStub;
+class VideoSender;
// This class represents a remote viewer connection to the chromoting
// host. It sets up all protocol channels and connects them to the
@@ -88,7 +88,7 @@ class ConnectionToClient : public base::NonThreadSafe,
// The stubs must not be accessed before OnConnectionAuthenticated(), or
// after OnConnectionClosed().
// Note that the audio stub will be nullptr if audio is not enabled.
- virtual VideoStub* video_stub();
+ virtual VideoSender* video_sender();
virtual AudioStub* audio_stub();
virtual ClientStub* client_stub();

Powered by Google App Engine
This is Rietveld 408576698