| 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 debug info clients can send to the sync server. | 5 // Sync protocol for debug info clients can send to the sync server. |
| 6 | 6 |
| 7 syntax = "proto2"; | 7 syntax = "proto2"; |
| 8 | 8 |
| 9 option optimize_for = LITE_RUNTIME; | 9 option optimize_for = LITE_RUNTIME; |
| 10 option retain_unknown_fields = true; | 10 option retain_unknown_fields = true; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 // conflicts. | 43 // conflicts. |
| 44 // | 44 // |
| 45 // These counters have been deprecated to avoid further confusion. The newer | 45 // These counters have been deprecated to avoid further confusion. The newer |
| 46 // counters provide more detail and are less buggy. | 46 // counters provide more detail and are less buggy. |
| 47 optional int32 num_blocking_conflicts = 2 [deprecated = true]; | 47 optional int32 num_blocking_conflicts = 2 [deprecated = true]; |
| 48 optional int32 num_non_blocking_conflicts = 3 [deprecated = true]; | 48 optional int32 num_non_blocking_conflicts = 3 [deprecated = true]; |
| 49 | 49 |
| 50 // These new conflict counters replace the ones above. | 50 // These new conflict counters replace the ones above. |
| 51 optional int32 num_encryption_conflicts = 4; | 51 optional int32 num_encryption_conflicts = 4; |
| 52 optional int32 num_hierarchy_conflicts = 5; | 52 optional int32 num_hierarchy_conflicts = 5; |
| 53 optional int32 num_simple_conflicts = 6; // No longer sent since M24. | 53 optional int32 num_simple_conflicts = 6; // No longer sent since M24. |
| 54 optional int32 num_server_conflicts = 7; | 54 optional int32 num_server_conflicts = 7; |
| 55 | 55 |
| 56 // Counts to track the effective usefulness of our GetUpdate requests. | 56 // Counts to track the effective usefulness of our GetUpdate requests. |
| 57 optional int32 num_updates_downloaded = 8; | 57 optional int32 num_updates_downloaded = 8; |
| 58 optional int32 num_reflected_updates_downloaded = 9; | 58 optional int32 num_reflected_updates_downloaded = 9; |
| 59 optional GetUpdatesCallerInfo caller_info = 10; | 59 optional GetUpdatesCallerInfo caller_info = 10; |
| 60 | 60 |
| 61 // A list of all the sources that were merged into this session. | 61 // A list of all the sources that were merged into this session. |
| 62 // | 62 // |
| 63 // Some scenarios, notably mode switches and canary jobs, can spuriously add | 63 // Some scenarios, notably mode switches and canary jobs, can spuriously add |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 // Whether cryptographer is ready to encrypt and decrypt data. | 157 // Whether cryptographer is ready to encrypt and decrypt data. |
| 158 optional bool cryptographer_ready = 2; | 158 optional bool cryptographer_ready = 2; |
| 159 | 159 |
| 160 // Cryptographer has pending keys which indicates the correct passphrase | 160 // Cryptographer has pending keys which indicates the correct passphrase |
| 161 // has not been provided yet. | 161 // has not been provided yet. |
| 162 optional bool cryptographer_has_pending_keys = 3; | 162 optional bool cryptographer_has_pending_keys = 3; |
| 163 | 163 |
| 164 // Indicates client has dropped some events to save bandwidth. | 164 // Indicates client has dropped some events to save bandwidth. |
| 165 optional bool events_dropped = 4; | 165 optional bool events_dropped = 4; |
| 166 } | 166 } |
| OLD | NEW |