Chromium Code Reviews| Index: content/browser/service_worker/service_worker_context_watcher.h |
| diff --git a/content/browser/service_worker/service_worker_context_watcher.h b/content/browser/service_worker/service_worker_context_watcher.h |
| index d7341a51ad0cd0c27a868553e1f4d90730148fc3..9b7e2bf63be9936c6da8b38bf9887739c7e85c30 100644 |
| --- a/content/browser/service_worker/service_worker_context_watcher.h |
| +++ b/content/browser/service_worker/service_worker_context_watcher.h |
| @@ -68,15 +68,16 @@ class ServiceWorkerContextWatcher |
| // ServiceWorkerContextObserver implements |
| void OnNewLiveRegistration(int64_t registration_id, |
| const GURL& pattern) override; |
| - void OnNewLiveVersion(int64_t version_id, |
| - int64_t registration_id, |
| - const GURL& script_url) override; |
| + void OnNewLiveVersion(const ServiceWorkerVersionInfo& version_info) override; |
| void OnRunningStateChanged( |
| int64_t version_id, |
| content::EmbeddedWorkerStatus running_status) override; |
| void OnVersionStateChanged( |
| int64_t version_id, |
| content::ServiceWorkerVersion::Status status) override; |
| + void OnVersionRoutingIdsChanged(int64_t version_id, |
|
horo
2016/09/26 01:30:05
OnVersionDevToolsRoutingIdChanged
dgozman
2016/09/26 15:49:12
Done.
|
| + int process_id, |
| + int devtools_agent_route_id) override; |
| void OnMainScriptHttpResponseInfoSet( |
| int64_t version_id, |
| base::Time script_response_time, |