Index: content/browser/browser_main.cc |
diff --git a/content/browser/browser_main.cc b/content/browser/browser_main.cc |
index c0ef41ef31fe63f1c4e0bdaf71513f2b50626d9a..50837e750d3470b1788a370aca817f287ba0e070 100644 |
--- a/content/browser/browser_main.cc |
+++ b/content/browser/browser_main.cc |
@@ -13,7 +13,7 @@ |
#include "base/system_monitor/system_monitor.h" |
#include "base/threading/thread_restrictions.h" |
#include "base/tracked_objects.h" |
-#include "content/browser/browser_thread.h" |
+#include "content/browser/browser_thread_impl.h" |
#include "content/browser/notification_service_impl.h" |
#include "content/common/hi_res_timer_manager.h" |
#include "content/common/main_function_params.h" |
@@ -279,8 +279,8 @@ void BrowserMainParts::InitializeMainThread() { |
#endif // TRACK_ALL_TASK_OBJECTS |
// Register the main thread by instantiating it, but don't call any methods. |
- main_thread_.reset(new BrowserThread(BrowserThread::UI, |
- MessageLoop::current())); |
+ main_thread_.reset(new BrowserThreadImpl(BrowserThread::UI, |
+ MessageLoop::current())); |
} |
void BrowserMainParts::InitializeToolkit() { |