| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index 8e56d016509f16985c67e860e75323e2626df806..c67233c45c341a7a644dfb7021ae539a48466af5 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -56,7 +56,10 @@
|
| #include "content/browser/hyphenator/hyphenator_message_filter.h"
|
| #include "content/browser/in_process_webkit/indexed_db_context_impl.h"
|
| #include "content/browser/in_process_webkit/indexed_db_dispatcher_host.h"
|
| +#include "content/browser/loader/resource_dispatcher_host_impl.h"
|
| #include "content/browser/loader/resource_message_filter.h"
|
| +#include "content/browser/loader/resource_scheduler.h"
|
| +#include "content/browser/loader/resource_scheduler_filter.h"
|
| #include "content/browser/mime_registry_message_filter.h"
|
| #include "content/browser/plugin_service_impl.h"
|
| #include "content/browser/profiler_message_filter.h"
|
| @@ -479,6 +482,7 @@ bool RenderProcessHostImpl::Init() {
|
|
|
| void RenderProcessHostImpl::CreateMessageFilters() {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| + channel_->AddFilter(new ResourceSchedulerFilter(GetID()));
|
| MediaObserver* media_observer =
|
| GetContentClient()->browser()->GetMediaObserver();
|
| // Add BrowserPluginMessageFilter to ensure it gets the first stab at messages
|
|
|