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_PROVIDER_HOST_H_ | 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ |
6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ | 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
13 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
14 #include "content/common/service_worker/service_worker_types.h" | 14 #include "content/common/service_worker/service_worker_types.h" |
15 #include "webkit/common/resource_type.h" | 15 #include "content/public/common/resource_type.h" |
16 | 16 |
17 namespace IPC { | 17 namespace IPC { |
18 class Sender; | 18 class Sender; |
19 } | 19 } |
20 | 20 |
21 namespace webkit_blob { | 21 namespace webkit_blob { |
22 class BlobStorageContext; | 22 class BlobStorageContext; |
23 } | 23 } |
24 | 24 |
25 namespace content { | 25 namespace content { |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
125 scoped_refptr<ServiceWorkerVersion> running_hosted_version_; | 125 scoped_refptr<ServiceWorkerVersion> running_hosted_version_; |
126 base::WeakPtr<ServiceWorkerContextCore> context_; | 126 base::WeakPtr<ServiceWorkerContextCore> context_; |
127 ServiceWorkerDispatcherHost* dispatcher_host_; | 127 ServiceWorkerDispatcherHost* dispatcher_host_; |
128 | 128 |
129 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerProviderHost); | 129 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerProviderHost); |
130 }; | 130 }; |
131 | 131 |
132 } // namespace content | 132 } // namespace content |
133 | 133 |
134 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ | 134 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_PROVIDER_HOST_H_ |
OLD | NEW |