summaryrefslogtreecommitdiffstats
path: root/remoting/proto/control.proto
diff options
context:
space:
mode:
authorsergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-05 01:19:27 +0000
committersergeyu@chromium.org <sergeyu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-05 01:19:27 +0000
commit5a5fdc08c1ae8fdfce391f1a17c5fbb6097ab280 (patch)
tree9d596e4c66ad4390611bfd0ab1f4852a41687c55 /remoting/proto/control.proto
parente37a725dfeef3effedd02eece32523413bbfae0f (diff)
downloadchromium_src-5a5fdc08c1ae8fdfce391f1a17c5fbb6097ab280.zip
chromium_src-5a5fdc08c1ae8fdfce391f1a17c5fbb6097ab280.tar.gz
chromium_src-5a5fdc08c1ae8fdfce391f1a17c5fbb6097ab280.tar.bz2
Remove old Authentication code that we don't use or need.
Also removed some auth-related protobufs that we don't currenly use. BUG=None TEST=IT2Me still works. Review URL: http://codereview.chromium.org/8351084 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@108759 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/proto/control.proto')
-rw-r--r--remoting/proto/control.proto13
1 files changed, 12 insertions, 1 deletions
diff --git a/remoting/proto/control.proto b/remoting/proto/control.proto
index 1f75bcb..a86ea5e 100644
--- a/remoting/proto/control.proto
+++ b/remoting/proto/control.proto
@@ -10,4 +10,15 @@ option optimize_for = LITE_RUNTIME;
package remoting.protocol;
-// Add control messages here. Currently we don't have any.
+// BeginSessionDeprecated is sent from host to client when the session
+// starts. Legacy clients expect to receive this message at the
+// beginning of each session. Current clients ignore it.
+//
+// TODO(sergeyu): Remove it once all clients are upgraded to the new
+// version.
+message LocalLoginStatusDeprecated {
+ optional bool success = 1;
+}
+message BeginSessionDeprecated {
+ optional LocalLoginStatusDeprecated login_status = 1;
+}