Index: content/browser/loader/navigation_url_loader_impl_core.h |
diff --git a/content/browser/loader/navigation_url_loader_impl_core.h b/content/browser/loader/navigation_url_loader_impl_core.h |
index 77f90e31bf31ee4bd50e81e4aa040d6757fdf970..6134c8a0024fa95d588f95ad49487e6658f82440 100644 |
--- a/content/browser/loader/navigation_url_loader_impl_core.h |
+++ b/content/browser/loader/navigation_url_loader_impl_core.h |
@@ -23,6 +23,8 @@ class NavigationResourceHandler; |
class ResourceContext; |
class ResourceHandler; |
class ResourceRequestBody; |
+class ServiceWorkerContext; |
+class ServiceWorkerContextWrapper; |
class StreamHandle; |
struct ResourceResponse; |
@@ -35,7 +37,8 @@ class NavigationURLLoaderImplCore { |
// Creates a new NavigationURLLoaderImplCore that forwards signals back to |
// |loader| on the UI thread. |
explicit NavigationURLLoaderImplCore( |
- const base::WeakPtr<NavigationURLLoaderImpl>& loader); |
+ const base::WeakPtr<NavigationURLLoaderImpl>& loader, |
+ ServiceWorkerContext* service_worker_context); |
~NavigationURLLoaderImplCore(); |
// Starts the request. |
@@ -64,6 +67,7 @@ class NavigationURLLoaderImplCore { |
private: |
base::WeakPtr<NavigationURLLoaderImpl> loader_; |
NavigationResourceHandler* resource_handler_; |
+ scoped_refptr<ServiceWorkerContextWrapper> service_worker_context_; |
DISALLOW_COPY_AND_ASSIGN(NavigationURLLoaderImplCore); |
}; |