Chromium Code Reviews| Index: content/browser/service_worker/service_worker_provider_host.h |
| diff --git a/content/browser/service_worker/service_worker_provider_host.h b/content/browser/service_worker/service_worker_provider_host.h |
| index 70ed349520841fb5d473d6f62c6b785a7d7ef8b6..591f1a5a1255e3d68e8b2552e05e6962086c98ce 100644 |
| --- a/content/browser/service_worker/service_worker_provider_host.h |
| +++ b/content/browser/service_worker/service_worker_provider_host.h |
| @@ -202,6 +202,13 @@ class CONTENT_EXPORT ServiceWorkerProviderHost |
| return dispatcher_host_; |
| } |
| + // PlzNavigate |
| + // Completes initialization of provider hosts used for navigation requests. |
| + void CompleteNavigationInitialized( |
| + int process_id, |
| + int route_id, |
|
nasko
2015/10/02 22:09:45
What object is this routing id for?
Fabrice (no longer in Chrome)
2015/10/06 17:21:38
Changed it to frame_routing_id but the other metho
|
| + ServiceWorkerDispatcherHost* dispatcher_host); |
| + |
| // Sends event messages to the renderer. Events for the worker are queued up |
| // until the worker thread id is known via SetReadyToSendMessagesToWorker(). |
| void SendUpdateFoundMessage( |
| @@ -289,6 +296,11 @@ class CONTENT_EXPORT ServiceWorkerProviderHost |
| bool IsReadyToSendMessages() const; |
| void Send(IPC::Message* message) const; |
| + // Finalizes cross-site transfers and navigation-initalized hosts. |
| + void FinalizeInitialization(int process_id, |
| + int frame_id, |
|
nasko
2015/10/02 22:09:45
nit: frame_routing_id?
Fabrice (no longer in Chrome)
2015/10/06 17:21:38
Done.
|
| + ServiceWorkerDispatcherHost* dispatcher_host); |
| + |
| std::string client_uuid_; |
| int render_process_id_; |
| int route_id_; |