| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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/engine_impl/conflict_resolver.h" | 5 #include "components/sync/engine_impl/conflict_resolver.h" |
| 6 | 6 |
| 7 #include <list> | 7 #include <list> |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/metrics/histogram.h" | 11 #include "base/metrics/histogram_macros.h" |
| 12 #include "components/sync/base/cryptographer.h" | 12 #include "components/sync/base/cryptographer.h" |
| 13 #include "components/sync/engine/cycle/update_counters.h" | 13 #include "components/sync/engine/cycle/update_counters.h" |
| 14 #include "components/sync/engine_impl/conflict_util.h" | 14 #include "components/sync/engine_impl/conflict_util.h" |
| 15 #include "components/sync/engine_impl/cycle/status_controller.h" | 15 #include "components/sync/engine_impl/cycle/status_controller.h" |
| 16 #include "components/sync/engine_impl/syncer_util.h" | 16 #include "components/sync/engine_impl/syncer_util.h" |
| 17 #include "components/sync/syncable/directory.h" | 17 #include "components/sync/syncable/directory.h" |
| 18 #include "components/sync/syncable/mutable_entry.h" | 18 #include "components/sync/syncable/mutable_entry.h" |
| 19 #include "components/sync/syncable/syncable_write_transaction.h" | 19 #include "components/sync/syncable/syncable_write_transaction.h" |
| 20 | 20 |
| 21 using std::list; | 21 using std::list; |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 GetModelTypeFromSpecifics(conflicting_node.GetSpecifics()))) { | 277 GetModelTypeFromSpecifics(conflicting_node.GetSpecifics()))) { |
| 278 continue; | 278 continue; |
| 279 } | 279 } |
| 280 | 280 |
| 281 ProcessSimpleConflict(trans, *it, cryptographer, status, counters); | 281 ProcessSimpleConflict(trans, *it, cryptographer, status, counters); |
| 282 } | 282 } |
| 283 return; | 283 return; |
| 284 } | 284 } |
| 285 | 285 |
| 286 } // namespace syncer | 286 } // namespace syncer |
| OLD | NEW |