| OLD | NEW |
| 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 COMPONENTS_SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
| 8 #define SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 8 #define COMPONENTS_SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| 11 | 11 |
| 12 #include "sync/base/sync_export.h" | 12 #include "components/sync/base/sync_export.h" |
| 13 | 13 |
| 14 namespace base { | 14 namespace base { |
| 15 class DictionaryValue; | 15 class DictionaryValue; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace sync_pb { | 18 namespace sync_pb { |
| 19 class AppListSpecifics; | 19 class AppListSpecifics; |
| 20 class AppNotification; | 20 class AppNotification; |
| 21 class AppNotificationSettings; | 21 class AppNotificationSettings; |
| 22 class AppSettingSpecifics; | 22 class AppSettingSpecifics; |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 const sync_pb::SyncCycleCompletedEventInfo& proto); | 310 const sync_pb::SyncCycleCompletedEventInfo& proto); |
| 311 | 311 |
| 312 std::unique_ptr<base::DictionaryValue> ClientConfigParamsToValue( | 312 std::unique_ptr<base::DictionaryValue> ClientConfigParamsToValue( |
| 313 const sync_pb::ClientConfigParams& proto); | 313 const sync_pb::ClientConfigParams& proto); |
| 314 | 314 |
| 315 SYNC_EXPORT std::unique_ptr<base::DictionaryValue> AttachmentIdProtoToValue( | 315 SYNC_EXPORT std::unique_ptr<base::DictionaryValue> AttachmentIdProtoToValue( |
| 316 const sync_pb::AttachmentIdProto& proto); | 316 const sync_pb::AttachmentIdProto& proto); |
| 317 | 317 |
| 318 } // namespace syncer | 318 } // namespace syncer |
| 319 | 319 |
| 320 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 320 #endif // COMPONENTS_SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
| OLD | NEW |