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 #ifndef SYNC_API_SYNC_DATA_H_ | 5 #ifndef SYNC_API_SYNC_DATA_H_ |
6 #define SYNC_API_SYNC_DATA_H_ | 6 #define SYNC_API_SYNC_DATA_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/callback.h" | 13 #include "base/callback.h" |
14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
15 #include "base/stl_util.h" | 15 #include "base/stl_util.h" |
16 #include "base/time/time.h" | 16 #include "base/time/time.h" |
17 #include "sync/api/attachments/attachment.h" | 17 #include "sync/api/attachments/attachment.h" |
18 #include "sync/api/attachments/attachment_service_proxy.h" | |
19 #include "sync/base/sync_export.h" | 18 #include "sync/base/sync_export.h" |
| 19 #include "sync/internal_api/public/attachments/attachment_service_proxy.h" |
20 #include "sync/internal_api/public/base/model_type.h" | 20 #include "sync/internal_api/public/base/model_type.h" |
21 #include "sync/internal_api/public/util/immutable.h" | 21 #include "sync/internal_api/public/util/immutable.h" |
22 #include "sync/internal_api/public/util/weak_handle.h" | 22 #include "sync/internal_api/public/util/weak_handle.h" |
23 | 23 |
24 namespace sync_pb { | 24 namespace sync_pb { |
25 class EntitySpecifics; | 25 class EntitySpecifics; |
26 class SyncEntity; | 26 class SyncEntity; |
27 } // namespace sync_pb | 27 } // namespace sync_pb |
28 | 28 |
29 namespace syncer { | 29 namespace syncer { |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 }; | 208 }; |
209 | 209 |
210 // gmock printer helper. | 210 // gmock printer helper. |
211 void PrintTo(const SyncData& sync_data, std::ostream* os); | 211 void PrintTo(const SyncData& sync_data, std::ostream* os); |
212 | 212 |
213 typedef std::vector<SyncData> SyncDataList; | 213 typedef std::vector<SyncData> SyncDataList; |
214 | 214 |
215 } // namespace syncer | 215 } // namespace syncer |
216 | 216 |
217 #endif // SYNC_API_SYNC_DATA_H_ | 217 #endif // SYNC_API_SYNC_DATA_H_ |
OLD | NEW |