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 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 142 |
143 // Boolean corresponding to whether printer items should be encrypted. | 143 // Boolean corresponding to whether printer items should be encrypted. |
144 optional bool encrypt_printers = 42; | 144 optional bool encrypt_printers = 42; |
| 145 |
| 146 // Boolean corresponding to whether reading list items should be encrypted. |
| 147 optional bool encrypt_reading_list = 43; |
145 } | 148 } |
OLD | NEW |