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_CHILD_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_H_ | 5 #ifndef CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_H_ |
6 #define CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_H_ | 6 #define CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 19 matching lines...) Expand all Loading... |
30 | 30 |
31 namespace IPC { | 31 namespace IPC { |
32 class Message; | 32 class Message; |
33 } | 33 } |
34 | 34 |
35 struct ServiceWorkerMsg_MessageToDocument_Params; | 35 struct ServiceWorkerMsg_MessageToDocument_Params; |
36 | 36 |
37 namespace content { | 37 namespace content { |
38 | 38 |
39 class ServiceWorkerHandleReference; | 39 class ServiceWorkerHandleReference; |
40 class ServiceWorkerMessageFilter; | |
41 class ServiceWorkerProviderContext; | 40 class ServiceWorkerProviderContext; |
42 class ServiceWorkerRegistrationHandleReference; | 41 class ServiceWorkerRegistrationHandleReference; |
43 class ThreadSafeSender; | 42 class ThreadSafeSender; |
44 class WebServiceWorkerImpl; | 43 class WebServiceWorkerImpl; |
45 class WebServiceWorkerRegistrationImpl; | 44 class WebServiceWorkerRegistrationImpl; |
46 struct ServiceWorkerObjectInfo; | 45 struct ServiceWorkerObjectInfo; |
47 struct ServiceWorkerRegistrationObjectInfo; | 46 struct ServiceWorkerRegistrationObjectInfo; |
48 struct ServiceWorkerVersionAttributes; | 47 struct ServiceWorkerVersionAttributes; |
49 | 48 |
50 // This class manages communication with the browser process about | 49 // This class manages communication with the browser process about |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 | 328 |
330 scoped_refptr<ThreadSafeSender> thread_safe_sender_; | 329 scoped_refptr<ThreadSafeSender> thread_safe_sender_; |
331 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_; | 330 scoped_refptr<base::SingleThreadTaskRunner> main_thread_task_runner_; |
332 | 331 |
333 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerDispatcher); | 332 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerDispatcher); |
334 }; | 333 }; |
335 | 334 |
336 } // namespace content | 335 } // namespace content |
337 | 336 |
338 #endif // CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_H_ | 337 #endif // CONTENT_CHILD_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_H_ |
OLD | NEW |