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

Side by Side Diff: chrome/browser/sync/test/integration/bookmarks_helper.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 (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 "chrome/browser/sync/test/integration/bookmarks_helper.h" 5 #include "chrome/browser/sync/test/integration/bookmarks_helper.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <memory> 9 #include <memory>
10 #include <set> 10 #include <set>
11 #include <stack> 11 #include <stack>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/bind.h" 14 #include "base/bind.h"
15 #include "base/compiler_specific.h"
16 #include "base/files/file_util.h" 15 #include "base/files/file_util.h"
17 #include "base/macros.h" 16 #include "base/macros.h"
18 #include "base/path_service.h" 17 #include "base/path_service.h"
19 #include "base/rand_util.h" 18 #include "base/rand_util.h"
20 #include "base/run_loop.h" 19 #include "base/run_loop.h"
21 #include "base/strings/string_number_conversions.h" 20 #include "base/strings/string_number_conversions.h"
22 #include "base/strings/string_util.h" 21 #include "base/strings/string_util.h"
23 #include "base/strings/stringprintf.h" 22 #include "base/strings/stringprintf.h"
24 #include "base/strings/utf_string_conversions.h" 23 #include "base/strings/utf_string_conversions.h"
25 #include "base/synchronization/waitable_event.h" 24 #include "base/synchronization/waitable_event.h"
(...skipping 978 matching lines...) Expand 10 before | Expand all | Expand 10 after
1004 1003
1005 std::string IndexedSubfolderName(int i) { 1004 std::string IndexedSubfolderName(int i) {
1006 return base::StringPrintf("Subfolder Name %d", i); 1005 return base::StringPrintf("Subfolder Name %d", i);
1007 } 1006 }
1008 1007
1009 std::string IndexedSubsubfolderName(int i) { 1008 std::string IndexedSubsubfolderName(int i) {
1010 return base::StringPrintf("Subsubfolder Name %d", i); 1009 return base::StringPrintf("Subsubfolder Name %d", i);
1011 } 1010 }
1012 1011
1013 } // namespace bookmarks_helper 1012 } // namespace bookmarks_helper
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698