| 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 datatype extension for nigori keys. | 5 // Sync protocol datatype extension for nigori keys. |
| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 optional bool encrypt_autofill_wallet_metadata = 39; | 132 optional bool encrypt_autofill_wallet_metadata = 39; |
| 133 | 133 |
| 134 // Boolean indicating whether this node was originally missing a | 134 // Boolean indicating whether this node was originally missing a |
| 135 // |keystore_migration_time| field value, and was fixed on the server by | 135 // |keystore_migration_time| field value, and was fixed on the server by |
| 136 // giving the field a value. | 136 // giving the field a value. |
| 137 // THIS FIELD SHOULD ONLY BE SET BY THE SERVER. | 137 // THIS FIELD SHOULD ONLY BE SET BY THE SERVER. |
| 138 optional bool server_only_was_missing_keystore_migration_time = 40; | 138 optional bool server_only_was_missing_keystore_migration_time = 40; |
| 139 | 139 |
| 140 // Boolean corresponding to whether arc pakcage items should be encrypted. | 140 // Boolean corresponding to whether arc pakcage items should be encrypted. |
| 141 optional bool encrypt_arc_package = 41; | 141 optional bool encrypt_arc_package = 41; |
| 142 |
| 143 // Boolean corresponding to whether printer items should be encrypted. |
| 144 optional bool encrypt_printers = 42; |
| 142 } | 145 } |
| OLD | NEW |