| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/browser/sync/engine/change_reorder_buffer.h" | 5 #include "chrome/browser/sync/internal_api/change_reorder_buffer.h" |
| 6 | 6 |
| 7 #include <limits> | 7 #include <limits> |
| 8 #include <queue> | 8 #include <queue> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <utility> // for pair<> | 10 #include <utility> // for pair<> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "chrome/browser/sync/internal_api/read_node.h" | 13 #include "chrome/browser/sync/internal_api/read_node.h" |
| 14 #include "chrome/browser/sync/syncable/model_type.h" | 14 #include "chrome/browser/sync/syncable/model_type.h" |
| 15 #include "chrome/browser/sync/syncable/syncable.h" | 15 #include "chrome/browser/sync/syncable/syncable.h" |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 // ordering. | 211 // ordering. |
| 212 if (operations_.find(handle) == operations_.end()) | 212 if (operations_.find(handle) == operations_.end()) |
| 213 operations_[handle] = OP_UPDATE_POSITION_AND_PROPERTIES; | 213 operations_[handle] = OP_UPDATE_POSITION_AND_PROPERTIES; |
| 214 id = child.Get(syncable::NEXT_ID); | 214 id = child.Get(syncable::NEXT_ID); |
| 215 } | 215 } |
| 216 } | 216 } |
| 217 } | 217 } |
| 218 } | 218 } |
| 219 | 219 |
| 220 } // namespace sync_api | 220 } // namespace sync_api |
| OLD | NEW |