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

Side by Side Diff: components/sync/engine_impl/get_commit_ids.cc

Issue 2387553002: [Sync] Removing duplicated includes between cc and h files. (Closed)
Patch Set: Fixing DataTypeStatusTable Created 4 years, 2 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/get_commit_ids.h" 5 #include "components/sync/engine_impl/get_commit_ids.h"
6 6
7 #include <stddef.h>
8 #include <stdint.h>
9
10 #include <set> 7 #include <set>
11 #include <vector>
12 8
13 #include "base/macros.h" 9 #include "base/macros.h"
14 #include "components/sync/base/cryptographer.h" 10 #include "components/sync/base/cryptographer.h"
15 #include "components/sync/engine_impl/syncer_util.h" 11 #include "components/sync/engine_impl/syncer_util.h"
16 #include "components/sync/syncable/directory.h"
17 #include "components/sync/syncable/entry.h" 12 #include "components/sync/syncable/entry.h"
18 #include "components/sync/syncable/nigori_handler.h" 13 #include "components/sync/syncable/nigori_handler.h"
19 #include "components/sync/syncable/nigori_util.h" 14 #include "components/sync/syncable/nigori_util.h"
20 #include "components/sync/syncable/syncable_base_transaction.h" 15 #include "components/sync/syncable/syncable_base_transaction.h"
21 #include "components/sync/syncable/syncable_util.h" 16 #include "components/sync/syncable/syncable_util.h"
22 17
23 using std::set; 18 using std::set;
24 using std::vector; 19 using std::vector;
25 20
26 namespace syncer { 21 namespace syncer {
(...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 // Add moves and creates, and prepend their uncommitted parents. 567 // Add moves and creates, and prepend their uncommitted parents.
573 traversal.AddCreatesAndMoves(ready_unsynced_set); 568 traversal.AddCreatesAndMoves(ready_unsynced_set);
574 569
575 // Add all deletes. 570 // Add all deletes.
576 traversal.AddDeletes(ready_unsynced_set); 571 traversal.AddDeletes(ready_unsynced_set);
577 } 572 }
578 573
579 } // namespace 574 } // namespace
580 575
581 } // namespace syncer 576 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/engine_impl/directory_update_handler.cc ('k') | components/sync/engine_impl/get_updates_processor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698