| 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 "sync/internal_api/public/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 | |
| 25 DataTypeAssociationStats::DataTypeAssociationStats( | |
| 26 const DataTypeAssociationStats& other) = default; | |
| 27 | |
| 28 DataTypeAssociationStats::~DataTypeAssociationStats() { | |
| 29 } | |
| 30 | |
| 31 } // namespace syncer | |
| OLD | NEW |