| Index: content/browser/service_worker/service_worker_dispatcher_host_unittest.cc
|
| diff --git a/content/browser/service_worker/service_worker_dispatcher_host_unittest.cc b/content/browser/service_worker/service_worker_dispatcher_host_unittest.cc
|
| index 8d5b39d40e1284b26845c23dbaa96b7cee210ae1..7881a70ec7f67e8def42abfa4c33ec6ac5c500c1 100644
|
| --- a/content/browser/service_worker/service_worker_dispatcher_host_unittest.cc
|
| +++ b/content/browser/service_worker/service_worker_dispatcher_host_unittest.cc
|
| @@ -78,7 +78,7 @@ TEST_F(ServiceWorkerDispatcherHostTest, DisabledCausesError) {
|
|
|
| bool handled;
|
| dispatcher_host->OnMessageReceived(
|
| - ServiceWorkerHostMsg_RegisterServiceWorker(-1, -1, GURL(), GURL()),
|
| + ServiceWorkerHostMsg_RegisterServiceWorker(-1, -1, -1, GURL(), GURL()),
|
| &handled);
|
| EXPECT_TRUE(handled);
|
|
|
| @@ -101,7 +101,7 @@ TEST_F(ServiceWorkerDispatcherHostTest, Enabled) {
|
|
|
| bool handled;
|
| dispatcher_host->OnMessageReceived(
|
| - ServiceWorkerHostMsg_RegisterServiceWorker(-1, -1, GURL(), GURL()),
|
| + ServiceWorkerHostMsg_RegisterServiceWorker(-1, -1, -1, GURL(), GURL()),
|
| &handled);
|
| EXPECT_TRUE(handled);
|
| base::RunLoop().RunUntilIdle();
|
| @@ -127,7 +127,7 @@ TEST_F(ServiceWorkerDispatcherHostTest, EarlyContextDeletion) {
|
|
|
| bool handled;
|
| dispatcher_host->OnMessageReceived(
|
| - ServiceWorkerHostMsg_RegisterServiceWorker(-1, -1, GURL(), GURL()),
|
| + ServiceWorkerHostMsg_RegisterServiceWorker(-1, -1, -1, GURL(), GURL()),
|
| &handled);
|
| EXPECT_TRUE(handled);
|
|
|
|
|