| Index: content/browser/service_worker/service_worker_dispatcher_host.h
 | 
| diff --git a/content/browser/service_worker/service_worker_dispatcher_host.h b/content/browser/service_worker/service_worker_dispatcher_host.h
 | 
| index e737a20e41df4178689848c85ef481997e71cce1..201935382ad4ada19b8f707f9e90dc4e97df33ae 100644
 | 
| --- a/content/browser/service_worker/service_worker_dispatcher_host.h
 | 
| +++ b/content/browser/service_worker/service_worker_dispatcher_host.h
 | 
| @@ -92,6 +92,9 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter {
 | 
|                           int request_id,
 | 
|                           int provider_id,
 | 
|                           const GURL& document_url);
 | 
| +  void OnGetRegistrationForReady(int thread_id,
 | 
| +                                 int request_id,
 | 
| +                                 int provider_id);
 | 
|    void OnProviderCreated(int provider_id,
 | 
|                           int render_frame_id,
 | 
|                           ServiceWorkerProviderType provider_type);
 | 
| @@ -154,6 +157,12 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter {
 | 
|        ServiceWorkerStatusCode status,
 | 
|        const scoped_refptr<ServiceWorkerRegistration>& registration);
 | 
|  
 | 
| +  void GetRegistrationForReadyComplete(
 | 
| +      int thread_id,
 | 
| +      int request_id,
 | 
| +      base::WeakPtr<ServiceWorkerProviderHost> provider_host,
 | 
| +      ServiceWorkerRegistration* registration);
 | 
| +
 | 
|    void SendRegistrationError(int thread_id,
 | 
|                               int request_id,
 | 
|                               ServiceWorkerStatusCode status,
 | 
| 
 |