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 for communication between sync client and server. | 5 // Sync protocol for communication between sync client and server. |
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 NigoriSpecifics nigori = 47745; | 109 optional NigoriSpecifics nigori = 47745; |
110 optional ExtensionSpecifics extension = 48119; | 110 optional ExtensionSpecifics extension = 48119; |
111 optional AppSpecifics app = 48364; | 111 optional AppSpecifics app = 48364; |
112 optional SessionSpecifics session = 50119; | 112 optional SessionSpecifics session = 50119; |
113 optional AutofillProfileSpecifics autofill_profile = 63951; | 113 optional AutofillProfileSpecifics autofill_profile = 63951; |
114 optional SearchEngineSpecifics search_engine = 88610; | 114 optional SearchEngineSpecifics search_engine = 88610; |
115 optional ExtensionSettingSpecifics extension_setting = 96159; | 115 optional ExtensionSettingSpecifics extension_setting = 96159; |
116 optional AppSettingSpecifics app_setting = 103656; | 116 optional AppSettingSpecifics app_setting = 103656; |
117 optional HistoryDeleteDirectiveSpecifics history_delete_directive = 150251; | 117 optional HistoryDeleteDirectiveSpecifics history_delete_directive = 150251; |
118 optional SyncedNotificationSpecifics synced_notification = 153108; | 118 optional SyncedNotificationSpecifics synced_notification = 153108; |
119 optional SyncedNotificationAppInfoSpecifics synced_notification_app_info = | 119 optional SyncedNotificationAppInfoSpecifics synced_notification_app_info = 235 816; |
Pete Williamson
2014/12/10 22:10:05
Should this line be removed, or does it need to st
Nicolas Zea
2014/12/10 22:26:02
I'm keeping it around for historical purposes.
| |
120 235816; | |
121 optional DeviceInfoSpecifics device_info = 154522; | 120 optional DeviceInfoSpecifics device_info = 154522; |
122 optional ExperimentsSpecifics experiments = 161496; | 121 optional ExperimentsSpecifics experiments = 161496; |
123 optional PriorityPreferenceSpecifics priority_preference = 163425; | 122 optional PriorityPreferenceSpecifics priority_preference = 163425; |
124 optional DictionarySpecifics dictionary = 170540; | 123 optional DictionarySpecifics dictionary = 170540; |
125 optional FaviconTrackingSpecifics favicon_tracking = 181534; | 124 optional FaviconTrackingSpecifics favicon_tracking = 181534; |
126 optional FaviconImageSpecifics favicon_image = 182019; | 125 optional FaviconImageSpecifics favicon_image = 182019; |
127 optional ManagedUserSettingSpecifics managed_user_setting = 186662; | 126 optional ManagedUserSettingSpecifics managed_user_setting = 186662; |
128 optional ManagedUserSpecifics managed_user = 194582; | 127 optional ManagedUserSpecifics managed_user = 194582; |
129 optional ManagedUserSharedSettingSpecifics managed_user_shared_setting = | 128 optional ManagedUserSharedSettingSpecifics managed_user_shared_setting = |
130 202026; | 129 202026; |
(...skipping 829 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
960 // Currently only meaningful if |error_type| is throttled. If this field | 959 // Currently only meaningful if |error_type| is throttled. If this field |
961 // is absent then the whole client (all datatypes) is throttled. | 960 // is absent then the whole client (all datatypes) is throttled. |
962 repeated int32 error_data_type_ids = 5; | 961 repeated int32 error_data_type_ids = 5; |
963 } | 962 } |
964 optional Error error = 13; | 963 optional Error error = 13; |
965 | 964 |
966 // The new per-client state for this client. If set, should be persisted and | 965 // The new per-client state for this client. If set, should be persisted and |
967 // sent with any subsequent ClientToServerMessages. | 966 // sent with any subsequent ClientToServerMessages. |
968 optional ChipBag new_bag_of_chips = 14; | 967 optional ChipBag new_bag_of_chips = 14; |
969 }; | 968 }; |
OLD | NEW |