| Index: content/browser/service_worker/service_worker_context_core.cc
|
| diff --git a/content/browser/service_worker/service_worker_context_core.cc b/content/browser/service_worker/service_worker_context_core.cc
|
| index 910b33c1f50fced97f8bca34e60ec5e5665026a3..d65466192abab5357ee87efb8a30257c520c0e9e 100644
|
| --- a/content/browser/service_worker/service_worker_context_core.cc
|
| +++ b/content/browser/service_worker/service_worker_context_core.cc
|
| @@ -160,15 +160,10 @@ void ServiceWorkerContextCore::RegisterServiceWorker(
|
|
|
| void ServiceWorkerContextCore::UnregisterServiceWorker(
|
| const GURL& pattern,
|
| - int source_process_id,
|
| - ServiceWorkerProviderHost* provider_host,
|
| const UnregistrationCallback& callback) {
|
| DCHECK_CURRENTLY_ON(BrowserThread::IO);
|
|
|
| - // TODO(kinuko): Wire the provider_host so that we can tell which document
|
| - // is calling .register.
|
| -
|
| - job_coordinator_->Unregister(pattern, source_process_id, callback);
|
| + job_coordinator_->Unregister(pattern, callback);
|
| }
|
|
|
| void ServiceWorkerContextCore::RegistrationComplete(
|
|
|