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

Unified Diff: chrome/tools/profiles/generate_profile.cc

Issue 5676004: Cleanup: Remove unneeded browser_thread.h usage. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix deps Created 10 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/tools/DEPS ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/profiles/generate_profile.cc
===================================================================
--- chrome/tools/profiles/generate_profile.cc (revision 68879)
+++ chrome/tools/profiles/generate_profile.cc (working copy)
@@ -18,10 +18,10 @@
#include "base/path_service.h"
#include "base/process_util.h"
#include "base/string_number_conversions.h"
-#include "base/utf_string_conversions.h"
#include "base/time.h"
#include "base/utf_string_conversions.h"
#include "base/win_util.h"
+#include "chrome/browser/browser_thread.h"
Lei Zhang 2010/12/11 00:20:36 This tripped check_deps.py, so I modified chrome/t
#include "chrome/browser/history/history.h"
#include "chrome/browser/history/top_sites.h"
#include "chrome/common/chrome_paths.h"
@@ -94,7 +94,7 @@
// Return a random URL-looking string.
GURL ConstructRandomURL() {
return GURL(std::wstring(L"http://") + RandomChars(3) + L".com/" +
- RandomChars(RandomInt(5,20)));
+ RandomChars(RandomInt(5, 20)));
}
// Return a random page title-looking string.
« no previous file with comments | « chrome/tools/DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698