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 // Keep this file in sync with the .proto files in this directory. | 5 // Keep this file in sync with the .proto files in this directory. |
6 | 6 |
7 #ifndef SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 7 #ifndef SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
8 #define SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 8 #define SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
9 | 9 |
10 namespace base { | 10 namespace base { |
(...skipping 23 matching lines...) Expand all Loading... |
34 class ExtensionSettingSpecifics; | 34 class ExtensionSettingSpecifics; |
35 class ExtensionSpecifics; | 35 class ExtensionSpecifics; |
36 class ExtensionSpecifics; | 36 class ExtensionSpecifics; |
37 class GlobalIdDirective; | 37 class GlobalIdDirective; |
38 class HistoryDeleteDirectiveSpecifics; | 38 class HistoryDeleteDirectiveSpecifics; |
39 class KeystoreEncryptionFlagsSpecifics; | 39 class KeystoreEncryptionFlagsSpecifics; |
40 class NigoriSpecifics; | 40 class NigoriSpecifics; |
41 class PasswordSpecifics; | 41 class PasswordSpecifics; |
42 class PasswordSpecificsData; | 42 class PasswordSpecificsData; |
43 class PreferenceSpecifics; | 43 class PreferenceSpecifics; |
| 44 class PushNotificationsSpecifics; |
44 class SearchEngineSpecifics; | 45 class SearchEngineSpecifics; |
45 class SessionHeader; | 46 class SessionHeader; |
46 class SessionSpecifics; | 47 class SessionSpecifics; |
47 class SessionTab; | 48 class SessionTab; |
48 class SessionWindow; | 49 class SessionWindow; |
49 class SyncCycleCompletedEventInfo; | 50 class SyncCycleCompletedEventInfo; |
50 class TabNavigation; | 51 class TabNavigation; |
51 class ThemeSpecifics; | 52 class ThemeSpecifics; |
52 class TimeRangeDirective; | 53 class TimeRangeDirective; |
53 class TypedUrlSpecifics; | 54 class TypedUrlSpecifics; |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 | 151 |
151 base::DictionaryValue* NigoriSpecificsToValue( | 152 base::DictionaryValue* NigoriSpecificsToValue( |
152 const sync_pb::NigoriSpecifics& nigori_specifics); | 153 const sync_pb::NigoriSpecifics& nigori_specifics); |
153 | 154 |
154 base::DictionaryValue* PasswordSpecificsToValue( | 155 base::DictionaryValue* PasswordSpecificsToValue( |
155 const sync_pb::PasswordSpecifics& password_specifics); | 156 const sync_pb::PasswordSpecifics& password_specifics); |
156 | 157 |
157 base::DictionaryValue* PreferenceSpecificsToValue( | 158 base::DictionaryValue* PreferenceSpecificsToValue( |
158 const sync_pb::PreferenceSpecifics& password_specifics); | 159 const sync_pb::PreferenceSpecifics& password_specifics); |
159 | 160 |
| 161 base::DictionaryValue* PushNotificationsSpecificsToValue( |
| 162 const sync_pb::PreferenceSpecifics& push_notifications_specifics); |
| 163 |
160 base::DictionaryValue* SearchEngineSpecificsToValue( | 164 base::DictionaryValue* SearchEngineSpecificsToValue( |
161 const sync_pb::SearchEngineSpecifics& search_engine_specifics); | 165 const sync_pb::SearchEngineSpecifics& search_engine_specifics); |
162 | 166 |
163 base::DictionaryValue* SessionSpecificsToValue( | 167 base::DictionaryValue* SessionSpecificsToValue( |
164 const sync_pb::SessionSpecifics& session_specifics); | 168 const sync_pb::SessionSpecifics& session_specifics); |
165 | 169 |
166 base::DictionaryValue* ThemeSpecificsToValue( | 170 base::DictionaryValue* ThemeSpecificsToValue( |
167 const sync_pb::ThemeSpecifics& theme_specifics); | 171 const sync_pb::ThemeSpecifics& theme_specifics); |
168 | 172 |
169 base::DictionaryValue* TypedUrlSpecificsToValue( | 173 base::DictionaryValue* TypedUrlSpecificsToValue( |
(...skipping 20 matching lines...) Expand all Loading... |
190 | 194 |
191 base::DictionaryValue* DebugInfoToValue( | 195 base::DictionaryValue* DebugInfoToValue( |
192 const sync_pb::DebugInfo& proto); | 196 const sync_pb::DebugInfo& proto); |
193 | 197 |
194 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( | 198 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( |
195 const sync_pb::SyncCycleCompletedEventInfo& proto); | 199 const sync_pb::SyncCycleCompletedEventInfo& proto); |
196 | 200 |
197 } // namespace syncer | 201 } // namespace syncer |
198 | 202 |
199 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 203 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
OLD | NEW |