| 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 2adb94b92870ca736e5e7d9da0315510c0f518cd..8a407eff05ef0604dea3f10257d4646b0ab92d39 100644
|
| --- a/content/browser/service_worker/service_worker_dispatcher_host_unittest.cc
|
| +++ b/content/browser/service_worker/service_worker_dispatcher_host_unittest.cc
|
| @@ -89,7 +89,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);
|
|
|
| @@ -116,7 +116,7 @@ TEST_F(ServiceWorkerDispatcherHostTest, DISABLED_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();
|
| @@ -144,7 +144,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);
|
|
|
|
|