| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <memory> | 10 #include <memory> |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 class MessagePortMessageFilter; | 32 class MessagePortMessageFilter; |
| 33 class ResourceContext; | 33 class ResourceContext; |
| 34 class ServiceWorkerContextCore; | 34 class ServiceWorkerContextCore; |
| 35 class ServiceWorkerContextWrapper; | 35 class ServiceWorkerContextWrapper; |
| 36 class ServiceWorkerHandle; | 36 class ServiceWorkerHandle; |
| 37 class ServiceWorkerProviderHost; | 37 class ServiceWorkerProviderHost; |
| 38 class ServiceWorkerRegistration; | 38 class ServiceWorkerRegistration; |
| 39 class ServiceWorkerRegistrationHandle; | 39 class ServiceWorkerRegistrationHandle; |
| 40 class ServiceWorkerVersion; | 40 class ServiceWorkerVersion; |
| 41 struct ServiceWorkerObjectInfo; | 41 struct ServiceWorkerObjectInfo; |
| 42 struct ServiceWorkerRegistrationInfo; | |
| 43 struct ServiceWorkerRegistrationObjectInfo; | 42 struct ServiceWorkerRegistrationObjectInfo; |
| 44 struct ServiceWorkerVersionAttributes; | 43 struct ServiceWorkerVersionAttributes; |
| 45 | 44 |
| 46 class CONTENT_EXPORT ServiceWorkerDispatcherHost | 45 class CONTENT_EXPORT ServiceWorkerDispatcherHost |
| 47 : public mojom::ServiceWorkerDispatcherHost, | 46 : public mojom::ServiceWorkerDispatcherHost, |
| 48 public BrowserMessageFilter { | 47 public BrowserMessageFilter { |
| 49 public: | 48 public: |
| 50 ServiceWorkerDispatcherHost( | 49 ServiceWorkerDispatcherHost( |
| 51 int render_process_id, | 50 int render_process_id, |
| 52 MessagePortMessageFilter* message_port_message_filter, | 51 MessagePortMessageFilter* message_port_message_filter, |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 277 mojo::AssociatedBindingSet<mojom::ServiceWorkerDispatcherHost> bindings_; | 276 mojo::AssociatedBindingSet<mojom::ServiceWorkerDispatcherHost> bindings_; |
| 278 | 277 |
| 279 base::WeakPtrFactory<ServiceWorkerDispatcherHost> weak_factory_; | 278 base::WeakPtrFactory<ServiceWorkerDispatcherHost> weak_factory_; |
| 280 | 279 |
| 281 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerDispatcherHost); | 280 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerDispatcherHost); |
| 282 }; | 281 }; |
| 283 | 282 |
| 284 } // namespace content | 283 } // namespace content |
| 285 | 284 |
| 286 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ | 285 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_DISPATCHER_HOST_H_ |
| OLD | NEW |