OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Sync protocol for communication between sync client and server. | 5 // Sync protocol for communication between sync client and server. |
6 | 6 |
7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change | 7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change |
8 // any fields in this file. | 8 // any fields in this file. |
9 | 9 |
10 syntax = "proto2"; | 10 syntax = "proto2"; |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 // support for a new datatype was recently | 134 // support for a new datatype was recently |
135 // released via a software auto-update. | 135 // released via a software auto-update. |
136 MIGRATION = 8; // The client is in configuration mode because a | 136 MIGRATION = 8; // The client is in configuration mode because a |
137 // MIGRATION_DONE error previously returned by the | 137 // MIGRATION_DONE error previously returned by the |
138 // server necessitated resynchronization. | 138 // server necessitated resynchronization. |
139 NEW_CLIENT = 9; // The client is in configuration mode because the | 139 NEW_CLIENT = 9; // The client is in configuration mode because the |
140 // user enabled sync for the first time. Not to be | 140 // user enabled sync for the first time. Not to be |
141 // confused with FIRST_UPDATE. | 141 // confused with FIRST_UPDATE. |
142 RECONFIGURATION = 10; // The client is in configuration mode because the | 142 RECONFIGURATION = 10; // The client is in configuration mode because the |
143 // user opted to sync a different set of datatypes. | 143 // user opted to sync a different set of datatypes. |
144 GU_TRIGGER = 12; // The client is in 'normal' mode. It may have several | 144 GU_TRIGGER = 12; // The client is in 'normal' mode. It may have several |
145 // reasons for requesting an update. See the per-type | 145 // reasons for requesting an update. See the per-type |
146 // GetUpdateTriggers message for more details. | 146 // GetUpdateTriggers message for more details. |
| 147 RETRY = 13; // A retry GU to pick up updates missed by last GU due to |
| 148 // replication delay, missing hints, etc. |
147 } | 149 } |
148 } | 150 } |
OLD | NEW |