| Index: content/browser/loader/resource_dispatcher_host_impl.cc
|
| diff --git a/content/browser/loader/resource_dispatcher_host_impl.cc b/content/browser/loader/resource_dispatcher_host_impl.cc
|
| index cb64dc8880b575a8b9d68095f688b4de3ade8ef9..03dd31e434b3fd00e9ab30b3de9376e2f05b84ee 100644
|
| --- a/content/browser/loader/resource_dispatcher_host_impl.cc
|
| +++ b/content/browser/loader/resource_dispatcher_host_impl.cc
|
| @@ -55,6 +55,7 @@
|
| #include "content/browser/loader/navigation_url_loader_impl_core.h"
|
| #include "content/browser/loader/power_save_block_resource_throttle.h"
|
| #include "content/browser/loader/redirect_to_file_resource_handler.h"
|
| +#include "content/browser/loader/resource_hints_impl.h"
|
| #include "content/browser/loader/resource_message_filter.h"
|
| #include "content/browser/loader/resource_request_info_impl.h"
|
| #include "content/browser/loader/stream_resource_handler.h"
|
| @@ -1143,6 +1144,7 @@ void ResourceDispatcherHostImpl::DidFinishLoading(ResourceLoader* loader) {
|
|
|
| void ResourceDispatcherHostImpl::OnInit() {
|
| scheduler_.reset(new ResourceScheduler);
|
| + resource_hints_controller_.reset(new ResourceHintsController);
|
| }
|
|
|
| void ResourceDispatcherHostImpl::OnShutdown() {
|
| @@ -1172,6 +1174,7 @@ void ResourceDispatcherHostImpl::OnShutdown() {
|
| }
|
|
|
| scheduler_.reset();
|
| + resource_hints_controller_.reset();
|
| }
|
|
|
| bool ResourceDispatcherHostImpl::OnMessageReceived(
|
|
|