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

Side by Side Diff: chrome/browser/sync/test/integration/bookmarks_helper.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 12 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>
8
7 #include <set> 9 #include <set>
8 #include <vector> 10 #include <vector>
9 11
10 #include "base/bind.h" 12 #include "base/bind.h"
11 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
12 #include "base/files/file_util.h" 14 #include "base/files/file_util.h"
15 #include "base/macros.h"
13 #include "base/path_service.h" 16 #include "base/path_service.h"
14 #include "base/rand_util.h" 17 #include "base/rand_util.h"
15 #include "base/run_loop.h" 18 #include "base/run_loop.h"
16 #include "base/strings/string_number_conversions.h" 19 #include "base/strings/string_number_conversions.h"
17 #include "base/strings/string_util.h" 20 #include "base/strings/string_util.h"
18 #include "base/strings/stringprintf.h" 21 #include "base/strings/stringprintf.h"
19 #include "base/strings/utf_string_conversions.h" 22 #include "base/strings/utf_string_conversions.h"
20 #include "base/synchronization/waitable_event.h" 23 #include "base/synchronization/waitable_event.h"
21 #include "base/task/cancelable_task_tracker.h" 24 #include "base/task/cancelable_task_tracker.h"
22 #include "chrome/browser/bookmarks/bookmark_model_factory.h" 25 #include "chrome/browser/bookmarks/bookmark_model_factory.h"
(...skipping 975 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 1001
999 std::string IndexedSubfolderName(int i) { 1002 std::string IndexedSubfolderName(int i) {
1000 return base::StringPrintf("Subfolder Name %d", i); 1003 return base::StringPrintf("Subfolder Name %d", i);
1001 } 1004 }
1002 1005
1003 std::string IndexedSubsubfolderName(int i) { 1006 std::string IndexedSubsubfolderName(int i) {
1004 return base::StringPrintf("Subsubfolder Name %d", i); 1007 return base::StringPrintf("Subsubfolder Name %d", i);
1005 } 1008 }
1006 1009
1007 } // namespace bookmarks_helper 1010 } // namespace bookmarks_helper
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698