OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ | 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ |
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ | 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ |
7 | 7 |
8 #include "base/memory/weak_ptr.h" | 8 #include "base/memory/weak_ptr.h" |
9 #include "content/browser/service_worker/service_worker_registration_status.h" | 9 #include "content/browser/service_worker/service_worker_registration_status.h" |
10 #include "content/public/browser/browser_message_filter.h" | 10 #include "content/public/browser/browser_message_filter.h" |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 const GURL& script_url); | 43 const GURL& script_url); |
44 void OnUnregisterServiceWorker(int32 thread_id, | 44 void OnUnregisterServiceWorker(int32 thread_id, |
45 int32 request_id, | 45 int32 request_id, |
46 const GURL& pattern); | 46 const GURL& pattern); |
47 void OnProviderCreated(int provider_id); | 47 void OnProviderCreated(int provider_id); |
48 void OnProviderDestroyed(int provider_id); | 48 void OnProviderDestroyed(int provider_id); |
49 void OnWorkerStarted(int thread_id, | 49 void OnWorkerStarted(int thread_id, |
50 int embedded_worker_id); | 50 int embedded_worker_id); |
51 void OnWorkerStopped(int embedded_worker_id); | 51 void OnWorkerStopped(int embedded_worker_id); |
52 void OnSendMessageToBrowser(int embedded_worker_id, | 52 void OnSendMessageToBrowser(int embedded_worker_id, |
| 53 int request_id, |
53 const IPC::Message& message); | 54 const IPC::Message& message); |
54 | 55 |
55 // Callbacks from ServiceWorkerContextCore | 56 // Callbacks from ServiceWorkerContextCore |
56 void RegistrationComplete(int32 thread_id, | 57 void RegistrationComplete(int32 thread_id, |
57 int32 request_id, | 58 int32 request_id, |
58 ServiceWorkerStatusCode status, | 59 ServiceWorkerStatusCode status, |
59 int64 registration_id); | 60 int64 registration_id); |
60 | 61 |
61 void UnregistrationComplete(int32 thread_id, | 62 void UnregistrationComplete(int32 thread_id, |
62 int32 request_id, | 63 int32 request_id, |
63 ServiceWorkerStatusCode status); | 64 ServiceWorkerStatusCode status); |
64 | 65 |
65 void SendRegistrationError(int32 thread_id, | 66 void SendRegistrationError(int32 thread_id, |
66 int32 request_id, | 67 int32 request_id, |
67 ServiceWorkerStatusCode status); | 68 ServiceWorkerStatusCode status); |
68 int render_process_id_; | 69 int render_process_id_; |
69 base::WeakPtr<ServiceWorkerContextCore> context_; | 70 base::WeakPtr<ServiceWorkerContextCore> context_; |
70 }; | 71 }; |
71 | 72 |
72 } // namespace content | 73 } // namespace content |
73 | 74 |
74 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ | 75 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ |
OLD | NEW |