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

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

Issue 8437002: Move BrowserThread to content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: A few updates. Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/base/thread_observer_helper.h ('k') | chrome_frame/test/net/fake_external_tab.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/tools/profiles/generate_profile.cc
diff --git a/chrome/tools/profiles/generate_profile.cc b/chrome/tools/profiles/generate_profile.cc
index 7f07110c8371dc34b0ed300b1e7e1f84b6a7a6ef..adebcd9d70a5f459d339dd3566c549b05f7f5984 100644
--- a/chrome/tools/profiles/generate_profile.cc
+++ b/chrome/tools/profiles/generate_profile.cc
@@ -31,6 +31,7 @@
#include "ui/gfx/codec/jpeg_codec.h"
using base::Time;
+using content::BrowserThread;
// Addition types data can be generated for. By default only urls/visits are
// added.
@@ -235,8 +236,8 @@ int main(int argc, const char* argv[]) {
ResourceBundle::InitSharedInstance("en-US");
NotificationServiceImpl notification_service;
MessageLoopForUI message_loop;
- DeprecatedBrowserThread ui_thread(BrowserThread::UI, &message_loop);
- DeprecatedBrowserThread db_thread(BrowserThread::DB, &message_loop);
+ content::DeprecatedBrowserThread ui_thread(BrowserThread::UI, &message_loop);
+ content::DeprecatedBrowserThread db_thread(BrowserThread::DB, &message_loop);
TestingProfile profile;
profile.CreateHistoryService(false, false);
if (types & TOP_SITES) {
« no previous file with comments | « chrome/test/base/thread_observer_helper.h ('k') | chrome_frame/test/net/fake_external_tab.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698