OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 optional bool encrypt_sessions = 20; | 60 optional bool encrypt_sessions = 20; |
61 optional bool encrypt_apps = 21; | 61 optional bool encrypt_apps = 21; |
62 optional bool encrypt_search_engines = 22; | 62 optional bool encrypt_search_engines = 22; |
63 | 63 |
64 optional bool sync_tabs = 23; | 64 optional bool sync_tabs = 23; |
65 | 65 |
66 // If true, all current and future datatypes will be encrypted. | 66 // If true, all current and future datatypes will be encrypted. |
67 optional bool encrypt_everything = 24; | 67 optional bool encrypt_everything = 24; |
68 | 68 |
69 optional bool encrypt_extension_settings = 25; | 69 optional bool encrypt_extension_settings = 25; |
70 | |
71 optional bool encrypt_app_notifications = 26; | 70 optional bool encrypt_app_notifications = 26; |
| 71 optional bool encrypt_app_settings = 27; |
72 } | 72 } |
73 | 73 |
74 extend EntitySpecifics { | 74 extend EntitySpecifics { |
75 optional NigoriSpecifics nigori = 47745; | 75 optional NigoriSpecifics nigori = 47745; |
76 } | 76 } |
77 | 77 |
OLD | NEW |