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

Unified Diff: remoting/proto/internal.proto

Issue 5068001: Move move classes to the remoting::protocol namespace. Minor cleanups. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes for windows Created 10 years, 1 month 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/proto/internal.proto
diff --git a/remoting/proto/internal.proto b/remoting/proto/internal.proto
index 6949375beb17dbb321f4de4948370542c97d2d2d..7c4385b159950eda5dba1b75bc6fe636bba21d2c 100644
--- a/remoting/proto/internal.proto
+++ b/remoting/proto/internal.proto
@@ -9,11 +9,16 @@ syntax = "proto2";
import "control.proto";
import "event.proto";
-import "video.proto";
option optimize_for = LITE_RUNTIME;
-package remoting;
+package remoting.protocol;
+
+// Represents a message being sent on the control channel.
+message ControlMessage {
+ optional SuggestResolutionRequest suggest_resolution = 1;
+ optional NotifyResolutionRequest notify_resolution = 2;
+}
// TODO(garykac) This is dead, remove remaining references and delete.
message ChromotingClientMessage {

Powered by Google App Engine
This is Rietveld 408576698