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

Unified Diff: remoting/protocol/client_control_dispatcher.cc

Issue 1844143002: Add VideoLayout message. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « remoting/proto/internal.proto ('k') | remoting/protocol/client_stub.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/client_control_dispatcher.cc
diff --git a/remoting/protocol/client_control_dispatcher.cc b/remoting/protocol/client_control_dispatcher.cc
index e228b0a71b7347837388ec6b88f34fb88861d44a..78f836d9553dba64ee96b24c037579407357487f 100644
--- a/remoting/protocol/client_control_dispatcher.cc
+++ b/remoting/protocol/client_control_dispatcher.cc
@@ -132,6 +132,8 @@ void ClientControlDispatcher::OnIncomingMessage(
client_stub_->SetPairingResponse(message->pairing_response());
} else if (message->has_extension_message()) {
client_stub_->DeliverHostMessage(message->extension_message());
+ } else if (message->has_video_layout()) {
+ client_stub_->SetVideoLayout(message->video_layout());
} else {
LOG(WARNING) << "Unknown control message received.";
}
« no previous file with comments | « remoting/proto/internal.proto ('k') | remoting/protocol/client_stub.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698