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

Side by Side Diff: remoting/proto/control.proto

Issue 8351084: Remove old Authentication code that we don't use or need. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // Protocol for control messages. 5 // Protocol for control messages.
6 6
7 syntax = "proto2"; 7 syntax = "proto2";
8 8
9 option optimize_for = LITE_RUNTIME; 9 option optimize_for = LITE_RUNTIME;
10 10
11 package remoting.protocol; 11 package remoting.protocol;
12 12
13 // Add control messages here. Currently we don't have any. 13 // BeginSessionDepricated is send from host to client when session
Wez 2011/11/03 18:14:37 typo: Depricated -> Deprecated typo: send -> sent
Sergey Ulanov 2011/11/03 19:11:55 Done.
14 // starts. Legacy clients expect to receive this message in the
Wez 2011/11/03 18:14:37 typo: in -> at
Sergey Ulanov 2011/11/03 19:11:55 Done.
15 // beginning of each session so the host sends this message. Current
Wez 2011/11/03 18:14:37 nit: lose "so the host..."?
Sergey Ulanov 2011/11/03 19:11:55 Done.
16 // client ignores it.
Wez 2011/11/03 18:14:37 typo: client -> clients, ignores -> ignore
Sergey Ulanov 2011/11/03 19:11:55 Done.
17 //
18 // TODO(sergeyu): Remove it once all clients are upgraded to the new
19 // version (Chrome 17 is released).
Wez 2011/11/03 18:14:37 Release of M17 doesn't guarantee that all clients
Wez 2011/11/03 20:39:39 I think we may have to wait to remove this until w
20 message LocalLoginStatusDeprecated {
21 optional bool success = 1;
22 }
23 message BeginSessionDeprecated {
24 optional LocalLoginStatusDeprecated login_status = 1;
25 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698