Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 } | |
| OLD | NEW |