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

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

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "components/sync/core/data_type_association_stats.h"
6
7 namespace syncer {
8
9 DataTypeAssociationStats::DataTypeAssociationStats()
10 : num_local_items_before_association(0),
11 num_sync_items_before_association(0),
12 num_local_items_after_association(0),
13 num_sync_items_after_association(0),
14 num_local_items_added(0),
15 num_local_items_deleted(0),
16 num_local_items_modified(0),
17 num_sync_items_added(0),
18 num_sync_items_deleted(0),
19 num_sync_items_modified(0),
20 local_version_pre_association(0),
21 sync_version_pre_association(0),
22 had_error(false) {}
23
24 DataTypeAssociationStats::DataTypeAssociationStats(
25 const DataTypeAssociationStats& other) = default;
26
27 DataTypeAssociationStats::~DataTypeAssociationStats() {}
28
29 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/core/data_type_association_stats.h ('k') | components/sync/core/data_type_debug_info_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698