| Index: content/browser/loader/resource_dispatcher_host_impl.h
|
| diff --git a/content/browser/loader/resource_dispatcher_host_impl.h b/content/browser/loader/resource_dispatcher_host_impl.h
|
| index 0b88ecdb2168f4a39772576ebfa547325c131aca..02d163fd32e73335c65c35dbea422d39c7edf995 100644
|
| --- a/content/browser/loader/resource_dispatcher_host_impl.h
|
| +++ b/content/browser/loader/resource_dispatcher_host_impl.h
|
| @@ -26,6 +26,7 @@
|
| #include "content/browser/download/download_resource_handler.h"
|
| #include "content/browser/loader/resource_loader.h"
|
| #include "content/browser/loader/resource_loader_delegate.h"
|
| +#include "content/browser/loader/resource_scheduler.h"
|
| #include "content/common/content_export.h"
|
| #include "content/public/browser/child_process_data.h"
|
| #include "content/public/browser/notification_types.h"
|
| @@ -210,6 +211,8 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl
|
|
|
| void ClearSSLClientAuthHandlerForRequest(net::URLRequest* request);
|
|
|
| + ResourceScheduler* scheduler() { return &scheduler_; }
|
| +
|
| private:
|
| FRIEND_TEST_ALL_PREFIXES(ResourceDispatcherHostTest,
|
| TestBlockedRequestsProcessDies);
|
| @@ -414,6 +417,8 @@ class CONTENT_EXPORT ResourceDispatcherHostImpl
|
| // shutdown.
|
| std::set<const ResourceContext*> active_resource_contexts_;
|
|
|
| + ResourceScheduler scheduler_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(ResourceDispatcherHostImpl);
|
| };
|
|
|
|
|