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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 // optional bool deprecated_encrypt_autofill = 6; | 44 // optional bool deprecated_encrypt_autofill = 6; |
45 // optional bool deprecated_encrypt_themes = 7; | 45 // optional bool deprecated_encrypt_themes = 7; |
46 // optional bool deprecated_encrypt_typed_urls = 8; | 46 // optional bool deprecated_encrypt_typed_urls = 8; |
47 // optional bool deprecated_encrypt_extensions = 9; | 47 // optional bool deprecated_encrypt_extensions = 9; |
48 // optional bool deprecated_encrypt_sessions = 10; | 48 // optional bool deprecated_encrypt_sessions = 10; |
49 // optional bool deprecated_encrypt_apps = 11; | 49 // optional bool deprecated_encrypt_apps = 11; |
50 // optional bool deprecated_encrypt_search_engines = 12; | 50 // optional bool deprecated_encrypt_search_engines = 12; |
51 | 51 |
52 // Booleans corresponding to whether a datatype should be encrypted. | 52 // Booleans corresponding to whether a datatype should be encrypted. |
53 // Passwords are always encrypted, so we don't need a field here. | 53 // Passwords are always encrypted, so we don't need a field here. |
| 54 // History delete directives need to be consumable by the server, and |
| 55 // thus can't be encrypted. |
54 optional bool encrypt_bookmarks = 13; | 56 optional bool encrypt_bookmarks = 13; |
55 optional bool encrypt_preferences = 14; | 57 optional bool encrypt_preferences = 14; |
56 optional bool encrypt_autofill_profile = 15; | 58 optional bool encrypt_autofill_profile = 15; |
57 optional bool encrypt_autofill = 16; | 59 optional bool encrypt_autofill = 16; |
58 optional bool encrypt_themes = 17; | 60 optional bool encrypt_themes = 17; |
59 optional bool encrypt_typed_urls = 18; | 61 optional bool encrypt_typed_urls = 18; |
60 optional bool encrypt_extensions = 19; | 62 optional bool encrypt_extensions = 19; |
61 optional bool encrypt_sessions = 20; | 63 optional bool encrypt_sessions = 20; |
62 optional bool encrypt_apps = 21; | 64 optional bool encrypt_apps = 21; |
63 optional bool encrypt_search_engines = 22; | 65 optional bool encrypt_search_engines = 22; |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 // The time (in epoch milliseconds) at which the keystore migration was | 105 // The time (in epoch milliseconds) at which the keystore migration was |
104 // performed. | 106 // performed. |
105 optional int64 keystore_migration_time = 32; | 107 optional int64 keystore_migration_time = 32; |
106 | 108 |
107 // The time (in epoch milliseconds) at which a custom passphrase was set. | 109 // The time (in epoch milliseconds) at which a custom passphrase was set. |
108 // Note: this field may not be set if the custom passphrase was applied before | 110 // Note: this field may not be set if the custom passphrase was applied before |
109 // this field was introduced. | 111 // this field was introduced. |
110 optional int64 custom_passphrase_time = 33; | 112 optional int64 custom_passphrase_time = 33; |
111 } | 113 } |
112 | 114 |
OLD | NEW |