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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 54 // History delete directives need to be consumable by the server, and |
55 // thus can't be encrypted. | 55 // thus can't be encrypted. |
56 // Synced Notifications need to be consumed by the server (the read flag) | 56 // Synced Notifications need to be consumed by the server (the read flag) |
57 // and thus can't be encrypted. | 57 // and thus can't be encrypted. |
| 58 // Synced Notification App Info is set by the server, and thus cannot be |
| 59 // encrypted. |
58 optional bool encrypt_bookmarks = 13; | 60 optional bool encrypt_bookmarks = 13; |
59 optional bool encrypt_preferences = 14; | 61 optional bool encrypt_preferences = 14; |
60 optional bool encrypt_autofill_profile = 15; | 62 optional bool encrypt_autofill_profile = 15; |
61 optional bool encrypt_autofill = 16; | 63 optional bool encrypt_autofill = 16; |
62 optional bool encrypt_themes = 17; | 64 optional bool encrypt_themes = 17; |
63 optional bool encrypt_typed_urls = 18; | 65 optional bool encrypt_typed_urls = 18; |
64 optional bool encrypt_extensions = 19; | 66 optional bool encrypt_extensions = 19; |
65 optional bool encrypt_sessions = 20; | 67 optional bool encrypt_sessions = 20; |
66 optional bool encrypt_apps = 21; | 68 optional bool encrypt_apps = 21; |
67 optional bool encrypt_search_engines = 22; | 69 optional bool encrypt_search_engines = 22; |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 optional bool encrypt_favicon_images = 35; | 123 optional bool encrypt_favicon_images = 35; |
122 optional bool encrypt_favicon_tracking = 36; | 124 optional bool encrypt_favicon_tracking = 36; |
123 | 125 |
124 // Boolean corresponding to whether articles should be encrypted. | 126 // Boolean corresponding to whether articles should be encrypted. |
125 optional bool encrypt_articles = 37; | 127 optional bool encrypt_articles = 37; |
126 | 128 |
127 // Boolean corresponding to whether app list items should be encrypted. | 129 // Boolean corresponding to whether app list items should be encrypted. |
128 optional bool encrypt_app_list = 38; | 130 optional bool encrypt_app_list = 38; |
129 } | 131 } |
130 | 132 |
OLD | NEW |