summaryrefslogtreecommitdiffstats
path: root/remoting/proto
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-28 18:43:37 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-28 18:43:37 +0000
commit4d10edeb5f3db4366b4521c2346bfb4741c21e6f (patch)
tree98a0a1d7d295cc31c0840977dc15134c1271de31 /remoting/proto
parent45b10f0917d6449aa53f66a6ea7fa6e8a4aea079 (diff)
downloadchromium_src-4d10edeb5f3db4366b4521c2346bfb4741c21e6f.zip
chromium_src-4d10edeb5f3db4366b4521c2346bfb4741c21e6f.tar.gz
chromium_src-4d10edeb5f3db4366b4521c2346bfb4741c21e6f.tar.bz2
HostMessageDispatcher to parse control messages
Changed MessageReader and MessageDecoder to support parsing in HostMessageDispatcher. BUG=None TEST=None Review URL: http://codereview.chromium.org/4017002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64283 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/proto')
-rw-r--r--remoting/proto/control.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/proto/control.proto b/remoting/proto/control.proto
index 299d8cc..99b5d37 100644
--- a/remoting/proto/control.proto
+++ b/remoting/proto/control.proto
@@ -18,7 +18,7 @@ message SuggestScreenResolutionRequest {
// Represents a control message that sent from the client to the host.
// This message is transmitted on the control channel.
message ClientControlMessage {
- optional SuggestScreenResolutionRequest suggestScreenResolutionRequest = 1;
+ optional SuggestScreenResolutionRequest suggest_screen_resolution_request = 1;
}
message SetScreenResolutionRequest {
@@ -29,5 +29,5 @@ message SetScreenResolutionRequest {
// Represents a control message that sent from host to the client.
// This message is transmitted on the control channel.
message HostControlMessage {
- optional SetScreenResolutionRequest setScreenResolutionRequest = 1;
+ optional SetScreenResolutionRequest set_screen_resolution_request = 1;
}