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

Side by Side Diff: sync/api/sync_data.h

Issue 436373002: Move non-API code out of sync/api/attachments/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Apply CR feedback. Created 6 years, 4 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/api/sync_change_unittest.cc ('k') | sync/api/sync_data.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 #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
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_
OLDNEW
« no previous file with comments | « sync/api/sync_change_unittest.cc ('k') | sync/api/sync_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698