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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 | 121 |
122 // Boolean corresponding to Whether to encrypt favicons data or not. | 122 // Boolean corresponding to Whether to encrypt favicons data or not. |
123 optional bool encrypt_favicon_images = 35; | 123 optional bool encrypt_favicon_images = 35; |
124 optional bool encrypt_favicon_tracking = 36; | 124 optional bool encrypt_favicon_tracking = 36; |
125 | 125 |
126 // Boolean corresponding to whether articles should be encrypted. | 126 // Boolean corresponding to whether articles should be encrypted. |
127 optional bool encrypt_articles = 37; | 127 optional bool encrypt_articles = 37; |
128 | 128 |
129 // Boolean corresponding to whether app list items should be encrypted. | 129 // Boolean corresponding to whether app list items should be encrypted. |
130 optional bool encrypt_app_list = 38; | 130 optional bool encrypt_app_list = 38; |
| 131 |
| 132 // Boolean corresponding to whether usage count and last use date of Wallet |
| 133 // data should be encrypted. |
| 134 optional bool encrypt_autofill_wallet_metadata = 39; |
131 } | 135 } |
132 | 136 |
OLD | NEW |