Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(142)

Side by Side Diff: sync/protocol/proto_value_conversions.h

Issue 15177003: Add Sync data type for managed users. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « sync/protocol/managed_user_specifics.proto ('k') | sync/protocol/proto_value_conversions.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 #include "sync/base/sync_export.h" 10 #include "sync/base/sync_export.h"
(...skipping 24 matching lines...) Expand all
35 class EverythingDirective; 35 class EverythingDirective;
36 class ExperimentsSpecifics; 36 class ExperimentsSpecifics;
37 class ExtensionSettingSpecifics; 37 class ExtensionSettingSpecifics;
38 class ExtensionSpecifics; 38 class ExtensionSpecifics;
39 class FaviconImageSpecifics; 39 class FaviconImageSpecifics;
40 class FaviconTrackingSpecifics; 40 class FaviconTrackingSpecifics;
41 class GlobalIdDirective; 41 class GlobalIdDirective;
42 class HistoryDeleteDirectiveSpecifics; 42 class HistoryDeleteDirectiveSpecifics;
43 class KeystoreEncryptionFlagsSpecifics; 43 class KeystoreEncryptionFlagsSpecifics;
44 class ManagedUserSettingSpecifics; 44 class ManagedUserSettingSpecifics;
45 class ManagedUserSpecifics;
45 class NigoriSpecifics; 46 class NigoriSpecifics;
46 class PasswordSpecifics; 47 class PasswordSpecifics;
47 class PasswordSpecificsData; 48 class PasswordSpecificsData;
48 class PreferenceSpecifics; 49 class PreferenceSpecifics;
49 class PriorityPreferenceSpecifics; 50 class PriorityPreferenceSpecifics;
50 class SearchEngineSpecifics; 51 class SearchEngineSpecifics;
51 class SessionHeader; 52 class SessionHeader;
52 class SessionSpecifics; 53 class SessionSpecifics;
53 class SessionTab; 54 class SessionTab;
54 class SessionWindow; 55 class SessionWindow;
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 SYNC_EXPORT_PRIVATE base::DictionaryValue* FaviconTrackingSpecificsToValue( 164 SYNC_EXPORT_PRIVATE base::DictionaryValue* FaviconTrackingSpecificsToValue(
164 const sync_pb::FaviconTrackingSpecifics& favicon_tracking_specifics); 165 const sync_pb::FaviconTrackingSpecifics& favicon_tracking_specifics);
165 166
166 SYNC_EXPORT base::DictionaryValue* HistoryDeleteDirectiveSpecificsToValue( 167 SYNC_EXPORT base::DictionaryValue* HistoryDeleteDirectiveSpecificsToValue(
167 const sync_pb::HistoryDeleteDirectiveSpecifics& 168 const sync_pb::HistoryDeleteDirectiveSpecifics&
168 history_delete_directive_specifics); 169 history_delete_directive_specifics);
169 170
170 SYNC_EXPORT_PRIVATE base::DictionaryValue* ManagedUserSettingSpecificsToValue( 171 SYNC_EXPORT_PRIVATE base::DictionaryValue* ManagedUserSettingSpecificsToValue(
171 const sync_pb::ManagedUserSettingSpecifics& managed_user_setting_specifics); 172 const sync_pb::ManagedUserSettingSpecifics& managed_user_setting_specifics);
172 173
174 SYNC_EXPORT_PRIVATE base::DictionaryValue* ManagedUserSpecificsToValue(
175 const sync_pb::ManagedUserSpecifics& managed_user_specifics);
176
173 SYNC_EXPORT_PRIVATE base::DictionaryValue* NigoriSpecificsToValue( 177 SYNC_EXPORT_PRIVATE base::DictionaryValue* NigoriSpecificsToValue(
174 const sync_pb::NigoriSpecifics& nigori_specifics); 178 const sync_pb::NigoriSpecifics& nigori_specifics);
175 179
176 SYNC_EXPORT_PRIVATE base::DictionaryValue* PasswordSpecificsToValue( 180 SYNC_EXPORT_PRIVATE base::DictionaryValue* PasswordSpecificsToValue(
177 const sync_pb::PasswordSpecifics& password_specifics); 181 const sync_pb::PasswordSpecifics& password_specifics);
178 182
179 SYNC_EXPORT_PRIVATE base::DictionaryValue* PreferenceSpecificsToValue( 183 SYNC_EXPORT_PRIVATE base::DictionaryValue* PreferenceSpecificsToValue(
180 const sync_pb::PreferenceSpecifics& password_specifics); 184 const sync_pb::PreferenceSpecifics& password_specifics);
181 185
182 SYNC_EXPORT_PRIVATE base::DictionaryValue* SyncedNotificationSpecificsToValue( 186 SYNC_EXPORT_PRIVATE base::DictionaryValue* SyncedNotificationSpecificsToValue(
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 223
220 base::DictionaryValue* SyncCycleCompletedEventInfoToValue( 224 base::DictionaryValue* SyncCycleCompletedEventInfoToValue(
221 const sync_pb::SyncCycleCompletedEventInfo& proto); 225 const sync_pb::SyncCycleCompletedEventInfo& proto);
222 226
223 base::DictionaryValue* ClientConfigParamsToValue( 227 base::DictionaryValue* ClientConfigParamsToValue(
224 const sync_pb::ClientConfigParams& proto); 228 const sync_pb::ClientConfigParams& proto);
225 229
226 } // namespace syncer 230 } // namespace syncer
227 231
228 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ 232 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_
OLDNEW
« no previous file with comments | « sync/protocol/managed_user_specifics.proto ('k') | sync/protocol/proto_value_conversions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698