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

Side by Side Diff: components/sync/engine/data_type_association_stats.cc

Issue 2413313004: [Sync] Move the last things out of core/. (Closed)
Patch Set: Address comments. 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
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/core/data_type_association_stats.h" 5 #include "components/sync/engine/data_type_association_stats.h"
6 6
7 namespace syncer { 7 namespace syncer {
8 8
9 DataTypeAssociationStats::DataTypeAssociationStats() 9 DataTypeAssociationStats::DataTypeAssociationStats()
10 : num_local_items_before_association(0), 10 : num_local_items_before_association(0),
11 num_sync_items_before_association(0), 11 num_sync_items_before_association(0),
12 num_local_items_after_association(0), 12 num_local_items_after_association(0),
13 num_sync_items_after_association(0), 13 num_sync_items_after_association(0),
14 num_local_items_added(0), 14 num_local_items_added(0),
15 num_local_items_deleted(0), 15 num_local_items_deleted(0),
16 num_local_items_modified(0), 16 num_local_items_modified(0),
17 num_sync_items_added(0), 17 num_sync_items_added(0),
18 num_sync_items_deleted(0), 18 num_sync_items_deleted(0),
19 num_sync_items_modified(0), 19 num_sync_items_modified(0),
20 local_version_pre_association(0), 20 local_version_pre_association(0),
21 sync_version_pre_association(0), 21 sync_version_pre_association(0),
22 had_error(false) {} 22 had_error(false) {}
23 23
24 DataTypeAssociationStats::DataTypeAssociationStats( 24 DataTypeAssociationStats::DataTypeAssociationStats(
25 const DataTypeAssociationStats& other) = default; 25 const DataTypeAssociationStats& other) = default;
26 26
27 DataTypeAssociationStats::~DataTypeAssociationStats() {} 27 DataTypeAssociationStats::~DataTypeAssociationStats() {}
28 28
29 } // namespace syncer 29 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/engine/data_type_association_stats.h ('k') | components/sync/engine/data_type_debug_info_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698