| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 | 131 |
| 132 // Boolean corresponding to whether usage count and last use date of Wallet | 132 // Boolean corresponding to whether usage count and last use date of Wallet |
| 133 // data should be encrypted. | 133 // data should be encrypted. |
| 134 optional bool encrypt_autofill_wallet_metadata = 39; | 134 optional bool encrypt_autofill_wallet_metadata = 39; |
| 135 | 135 |
| 136 // Boolean indicating whether this node was originally missing a | 136 // Boolean indicating whether this node was originally missing a |
| 137 // |keystore_migration_time| field value, and was fixed on the server by | 137 // |keystore_migration_time| field value, and was fixed on the server by |
| 138 // giving the field a value. | 138 // giving the field a value. |
| 139 // THIS FIELD SHOULD ONLY BE SET BY THE SERVER. | 139 // THIS FIELD SHOULD ONLY BE SET BY THE SERVER. |
| 140 optional bool server_only_was_missing_keystore_migration_time = 40; | 140 optional bool server_only_was_missing_keystore_migration_time = 40; |
| 141 |
| 142 // Boolean corresponding to whether arc pakcage items should be encrypted. |
| 143 optional bool encrypt_arc_package = 41; |
| 141 } | 144 } |
| 142 | 145 |
| OLD | NEW |