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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 optional int64 keystore_migration_time = 32; | 109 optional int64 keystore_migration_time = 32; |
110 | 110 |
111 // The time (in epoch milliseconds) at which a custom passphrase was set. | 111 // The time (in epoch milliseconds) at which a custom passphrase was set. |
112 // Note: this field may not be set if the custom passphrase was applied before | 112 // Note: this field may not be set if the custom passphrase was applied before |
113 // this field was introduced. | 113 // this field was introduced. |
114 optional int64 custom_passphrase_time = 33; | 114 optional int64 custom_passphrase_time = 33; |
115 | 115 |
116 // Boolean corresponding to whether custom spelling dictionary should be | 116 // Boolean corresponding to whether custom spelling dictionary should be |
117 // encrypted. | 117 // encrypted. |
118 optional bool encrypt_dictionary = 34; | 118 optional bool encrypt_dictionary = 34; |
| 119 |
| 120 // Boolean corresponding to Whether to encrypt favicons data or not. |
| 121 optional bool encrypt_favicons = 35; |
119 } | 122 } |
120 | 123 |
OLD | NEW |