 Chromium Code Reviews
 Chromium Code Reviews Issue 62203007:
  Implement memory-persistent registration  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src
    
  
    Issue 62203007:
  Implement memory-persistent registration  (Closed) 
  Base URL: svn://svn.chromium.org/chrome/trunk/src| 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 449cb2c67e00024a760a690d1e00da30e9780826..8902c9bf13bcfa0142160b8d56eaf8e3deffa2dc 100644 | 
| --- a/content/browser/service_worker/service_worker_dispatcher_host.h | 
| +++ b/content/browser/service_worker/service_worker_dispatcher_host.h | 
| @@ -34,6 +34,14 @@ class CONTENT_EXPORT ServiceWorkerDispatcherHost : public BrowserMessageFilter { | 
| void OnUnregisterServiceWorker(int32 thread_id, | 
| int32 request_id, | 
| const GURL& scope); | 
| + | 
| + void ServiceWorkerRegistered(int32 thread_id, | 
| + int32 request_id, | 
| + int32 worker_id); | 
| + void ServiceWorkerUnregistered(int32 thread_id, | 
| + int32 request_id, | 
| + int32 worker_id); | 
| 
kinuko
2013/11/08 09:08:21
Not implemented?
 
alecflett
2013/11/08 22:50:54
oops. Done.
 | 
| + | 
| scoped_refptr<ServiceWorkerContext> context_; | 
| }; |