| Index: content/browser/service_worker/service_worker_provider_host_unittest.cc
|
| diff --git a/content/browser/service_worker/service_worker_provider_host_unittest.cc b/content/browser/service_worker/service_worker_provider_host_unittest.cc
|
| index ce0560be5e6e4003d99cd3ad8eab9158f3c1bf93..9a710e1efc75fb3431c6e02edebb7d08933b0fc9 100644
|
| --- a/content/browser/service_worker/service_worker_provider_host_unittest.cc
|
| +++ b/content/browser/service_worker/service_worker_provider_host_unittest.cc
|
| @@ -54,11 +54,14 @@ class ServiceWorkerProviderHostTest : public testing::Test {
|
| context_ = helper_->context();
|
| script_url_ = GURL("https://www.example.com/service_worker.js");
|
| registration1_ = new ServiceWorkerRegistration(
|
| - GURL("https://www.example.com/"), 1L, context_->AsWeakPtr());
|
| + GURL("https://www.example.com/"), false /* use_cache */, 1L,
|
| + context_->AsWeakPtr());
|
| registration2_ = new ServiceWorkerRegistration(
|
| - GURL("https://www.example.com/example"), 2L, context_->AsWeakPtr());
|
| + GURL("https://www.example.com/example"), false /* use_cache */, 2L,
|
| + context_->AsWeakPtr());
|
| registration3_ = new ServiceWorkerRegistration(
|
| - GURL("https://other.example.com/"), 3L, context_->AsWeakPtr());
|
| + GURL("https://other.example.com/"), false /* use_cache */, 3L,
|
| + context_->AsWeakPtr());
|
| }
|
|
|
| void TearDown() override {
|
|
|