| OLD | NEW |
| (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 | |
| OLD | NEW |