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/api/sync_merge_result.h" | 5 #include "components/sync/model/sync_merge_result.h" |
6 | 6 |
7 namespace syncer { | 7 namespace syncer { |
8 | 8 |
9 SyncMergeResult::SyncMergeResult(ModelType type) | 9 SyncMergeResult::SyncMergeResult(ModelType type) |
10 : model_type_(type), | 10 : model_type_(type), |
11 num_items_before_association_(0), | 11 num_items_before_association_(0), |
12 num_items_after_association_(0), | 12 num_items_after_association_(0), |
13 num_items_added_(0), | 13 num_items_added_(0), |
14 num_items_deleted_(0), | 14 num_items_deleted_(0), |
15 num_items_modified_(0), | 15 num_items_modified_(0), |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 | 77 |
78 int SyncMergeResult::num_items_modified() const { | 78 int SyncMergeResult::num_items_modified() const { |
79 return num_items_modified_; | 79 return num_items_modified_; |
80 } | 80 } |
81 | 81 |
82 int64_t SyncMergeResult::pre_association_version() const { | 82 int64_t SyncMergeResult::pre_association_version() const { |
83 return pre_association_version_; | 83 return pre_association_version_; |
84 } | 84 } |
85 | 85 |
86 } // namespace syncer | 86 } // namespace syncer |
OLD | NEW |