Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1082)

Side by Side Diff: chrome/browser/sync/internal_api/change_reorder_buffer.cc

Issue 7719011: Move some files from sync/engine to internal_api (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Refresh the diff and remove unintended change Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
OLDNEW
« no previous file with comments | « chrome/browser/sync/internal_api/change_reorder_buffer.h ('k') | chrome/browser/sync/internal_api/configure_reason.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698