| Index: content/browser/service_worker/service_worker_internals_ui.cc
|
| diff --git a/content/browser/service_worker/service_worker_internals_ui.cc b/content/browser/service_worker/service_worker_internals_ui.cc
|
| index 950816c6baa92034a1493903249288236bb07c2b..1980cf34132624d142ac5a7839dcb665e2d6df1e 100644
|
| --- a/content/browser/service_worker/service_worker_internals_ui.cc
|
| +++ b/content/browser/service_worker/service_worker_internals_ui.cc
|
| @@ -567,8 +567,10 @@ void ServiceWorkerInternalsUI::OperationProxy::StartActiveWorker(
|
| const scoped_refptr<ServiceWorkerRegistration>& registration) {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
| if (status == SERVICE_WORKER_OK) {
|
| - registration->active_version()->StartWorker(base::Bind(
|
| - &ServiceWorkerInternalsUI::OperationProxy::OperationComplete, this));
|
| + registration->active_version()->StartWorker(
|
| + base::Bind(&ServiceWorkerInternalsUI::OperationProxy::OperationComplete,
|
| + this),
|
| + std::vector<int>());
|
| return;
|
| }
|
|
|
|
|