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

Side by Side Diff: components/sync/model/sync_data.cc

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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
« no previous file with comments | « components/sync/model/sync_data.h ('k') | components/sync/model/sync_data_unittest.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 (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 #include "components/sync/api/sync_data.h" 5 #include "components/sync/model/sync_data.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <ostream> 8 #include <ostream>
9 9
10 #include "base/json/json_writer.h" 10 #include "base/json/json_writer.h"
11 #include "base/strings/string_number_conversions.h" 11 #include "base/strings/string_number_conversions.h"
12 #include "base/values.h" 12 #include "base/values.h"
13 #include "components/sync/core/base_node.h" 13 #include "components/sync/core/base_node.h"
14 #include "components/sync/protocol/proto_value_conversions.h" 14 #include "components/sync/protocol/proto_value_conversions.h"
15 #include "components/sync/protocol/sync.pb.h" 15 #include "components/sync/protocol/sync.pb.h"
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 return immutable_entity_.Get().client_defined_unique_tag(); 219 return immutable_entity_.Get().client_defined_unique_tag();
220 } 220 }
221 221
222 void SyncDataRemote::GetOrDownloadAttachments( 222 void SyncDataRemote::GetOrDownloadAttachments(
223 const AttachmentIdList& attachment_ids, 223 const AttachmentIdList& attachment_ids,
224 const AttachmentService::GetOrDownloadCallback& callback) { 224 const AttachmentService::GetOrDownloadCallback& callback) {
225 attachment_service_.GetOrDownloadAttachments(attachment_ids, callback); 225 attachment_service_.GetOrDownloadAttachments(attachment_ids, callback);
226 } 226 }
227 227
228 } // namespace syncer 228 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/model/sync_data.h ('k') | components/sync/model/sync_data_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698