diff options
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/browser_main_loop.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc index d722637..bdc2280 100644 --- a/content/browser/browser_main_loop.cc +++ b/content/browser/browser_main_loop.cc @@ -11,6 +11,7 @@ #include "base/metrics/field_trial.h" #include "base/metrics/histogram.h" #include "base/threading/thread_restrictions.h" +#include "base/tracked_objects.h" #include "content/browser/browser_thread_impl.h" #include "content/browser/trace_controller.h" #include "content/common/hi_res_timer_manager.h" @@ -296,6 +297,7 @@ void BrowserMainLoop::InitializeMainThread() { const char* kThreadName = "CrBrowserMain"; base::PlatformThread::SetName(kThreadName); main_message_loop_->set_thread_name(kThreadName); + tracked_objects::ThreadData::InitializeThreadContext(kThreadName); // Register the main thread by instantiating it, but don't call any methods. main_thread_.reset(new BrowserThreadImpl(BrowserThread::UI, |