| Index: content/browser/browser_main_loop.cc
|
| diff --git a/content/browser/browser_main_loop.cc b/content/browser/browser_main_loop.cc
|
| index ee37ebd34483caab1a3b51028501d6e15b9fff01..66a8078ab7b97f5452ff7992b18fc1633ff17c9e 100644
|
| --- a/content/browser/browser_main_loop.cc
|
| +++ b/content/browser/browser_main_loop.cc
|
| @@ -42,6 +42,7 @@
|
| #include "components/tracing/trace_to_console.h"
|
| #include "components/tracing/tracing_switches.h"
|
| #include "content/browser/browser_thread_impl.h"
|
| +#include "content/browser/content_resource_dispatcher_host.h"
|
| #include "content/browser/device_sensors/device_inertial_sensor_service.h"
|
| #include "content/browser/dom_storage/dom_storage_area.h"
|
| #include "content/browser/download/save_file_manager.h"
|
| @@ -1306,7 +1307,12 @@ int BrowserMainLoop::BrowserThreadsStarted() {
|
| {
|
| TRACE_EVENT0("startup",
|
| "BrowserMainLoop::BrowserThreadsStarted:InitResourceDispatcherHost");
|
| + content_resource_dispatcher_host_.reset(
|
| + new ContentResourceDispatcherHost());
|
| resource_dispatcher_host_.reset(new ResourceDispatcherHostImpl());
|
| + content_resource_dispatcher_host_->SetChild(
|
| + resource_dispatcher_host_.get());
|
| + resource_dispatcher_host_->Init();
|
| }
|
|
|
| // MediaStreamManager needs the IO thread to be created.
|
|
|