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 #pragma once | |
10 | 9 |
11 namespace base { | 10 namespace base { |
12 class DictionaryValue; | 11 class DictionaryValue; |
13 } | 12 } |
14 | 13 |
15 namespace sync_pb { | 14 namespace sync_pb { |
16 class AppNotification; | 15 class AppNotification; |
17 class AppNotificationSettings; | 16 class AppNotificationSettings; |
18 class AppSettingSpecifics; | 17 class AppSettingSpecifics; |
19 class AppSpecifics; | 18 class AppSpecifics; |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 bool include_specifics); | 143 bool include_specifics); |
145 | 144 |
146 base::DictionaryValue* ClientToServerResponseToValue( | 145 base::DictionaryValue* ClientToServerResponseToValue( |
147 const sync_pb::ClientToServerResponse& proto, | 146 const sync_pb::ClientToServerResponse& proto, |
148 bool include_specifics); | 147 bool include_specifics); |
149 | 148 |
150 | 149 |
151 } // namespace syncer | 150 } // namespace syncer |
152 | 151 |
153 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ | 152 #endif // SYNC_PROTOCOL_PROTO_VALUE_CONVERSIONS_H_ |
OLD | NEW |