Chromium Code Reviews| 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 9b8a17a008732d404143b7029701b29baccd6153..924bd7fb19f317d30625b3a5cb5065684d410b58 100644 |
| --- a/content/browser/service_worker/service_worker_context_core.cc |
| +++ b/content/browser/service_worker/service_worker_context_core.cc |
| @@ -155,15 +155,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. |
|
Jeffrey Yasskin
2014/04/29 00:37:09
This looks like a mistake in copy/paste.
|
| - |
| - job_coordinator_->Unregister(pattern, source_process_id, callback); |
| + job_coordinator_->Unregister(pattern, callback); |
| } |
| void ServiceWorkerContextCore::RegistrationComplete( |