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