Index: content/browser/service_worker/service_worker_context_request_handler_unittest.cc |
diff --git a/content/browser/service_worker/service_worker_context_request_handler_unittest.cc b/content/browser/service_worker/service_worker_context_request_handler_unittest.cc |
index 73e6040de521a4202ae32a850f14d3e4c52eb668..5f08d2307fe6daae715bd05b42e60ce40cd4b803 100644 |
--- a/content/browser/service_worker/service_worker_context_request_handler_unittest.cc |
+++ b/content/browser/service_worker/service_worker_context_request_handler_unittest.cc |
@@ -91,7 +91,8 @@ class ServiceWorkerContextRequestHandlerTest : public testing::Test { |
std::unique_ptr<ServiceWorkerProviderHost> host = |
CreateProviderHostForServiceWorkerContext( |
helper_->mock_render_process_id(), 1 /* provider_id */, |
- true /* is_parent_frame_secure */, context()->AsWeakPtr()); |
+ true /* is_parent_frame_secure */, context()->AsWeakPtr(), |
+ &remote_endpoint_); |
provider_host_ = host->AsWeakPtr(); |
context()->AddProviderHost(std::move(host)); |
provider_host_->running_hosted_version_ = version_; |
@@ -136,6 +137,7 @@ class ServiceWorkerContextRequestHandlerTest : public testing::Test { |
GURL scope_; |
GURL script_url_; |
GURL import_script_url_; |
+ ServiceWorkerRemoteProviderEndpoint remote_endpoint_; |
storage::BlobStorageContext blob_storage_context_; |
}; |