| 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 "sync/engine/conflict_resolver.h" | 5 #include "sync/engine/conflict_resolver.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <list> | 8 #include <list> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| 11 | 11 |
| 12 #include "base/location.h" | 12 #include "base/location.h" |
| 13 #include "base/metrics/histogram.h" | 13 #include "base/metrics/histogram.h" |
| 14 #include "sync/engine/syncer.h" | 14 #include "sync/engine/syncer.h" |
| 15 #include "sync/engine/syncer_util.h" | 15 #include "sync/engine/syncer_util.h" |
| 16 #include "sync/protocol/nigori_specifics.pb.h" | 16 #include "sync/protocol/nigori_specifics.pb.h" |
| 17 #include "sync/sessions/status_controller.h" | 17 #include "sync/sessions/status_controller.h" |
| 18 #include "sync/syncable/directory.h" | 18 #include "sync/syncable/directory.h" |
| 19 #include "sync/syncable/mutable_entry.h" | 19 #include "sync/syncable/mutable_entry.h" |
| 20 #include "sync/syncable/write_transaction.h" | 20 #include "sync/syncable/write_transaction.h" |
| 21 #include "sync/util/cryptographer.h" | 21 #include "sync/util/cryptographer.h" |
| 22 | 22 |
| 23 using std::list; | 23 using std::list; |
| 24 using std::map; | 24 using std::map; |
| 25 using std::set; | 25 using std::set; |
| 26 |
| 27 namespace syncer { |
| 28 |
| 29 using sessions::ConflictProgress; |
| 30 using sessions::StatusController; |
| 26 using syncable::BaseTransaction; | 31 using syncable::BaseTransaction; |
| 27 using syncable::Directory; | 32 using syncable::Directory; |
| 28 using syncable::Entry; | 33 using syncable::Entry; |
| 29 using syncable::GetModelTypeFromSpecifics; | 34 using syncable::GetModelTypeFromSpecifics; |
| 30 using syncable::Id; | 35 using syncable::Id; |
| 31 using syncable::IsRealDataType; | 36 using syncable::IsRealDataType; |
| 32 using syncable::MutableEntry; | 37 using syncable::MutableEntry; |
| 33 using syncable::WriteTransaction; | 38 using syncable::WriteTransaction; |
| 34 | 39 |
| 35 namespace syncer { | |
| 36 | |
| 37 using sessions::ConflictProgress; | |
| 38 using sessions::StatusController; | |
| 39 | |
| 40 namespace { | 40 namespace { |
| 41 | 41 |
| 42 const int SYNC_CYCLES_BEFORE_ADMITTING_DEFEAT = 8; | 42 const int SYNC_CYCLES_BEFORE_ADMITTING_DEFEAT = 8; |
| 43 | 43 |
| 44 } // namespace | 44 } // namespace |
| 45 | 45 |
| 46 ConflictResolver::ConflictResolver() { | 46 ConflictResolver::ConflictResolver() { |
| 47 } | 47 } |
| 48 | 48 |
| 49 ConflictResolver::~ConflictResolver() { | 49 ConflictResolver::~ConflictResolver() { |
| (...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 forward_progress = true; | 411 forward_progress = true; |
| 412 break; | 412 break; |
| 413 } | 413 } |
| 414 processed_items.insert(id); | 414 processed_items.insert(id); |
| 415 } | 415 } |
| 416 } | 416 } |
| 417 return forward_progress; | 417 return forward_progress; |
| 418 } | 418 } |
| 419 | 419 |
| 420 } // namespace syncer | 420 } // namespace syncer |
| OLD | NEW |