| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_REQUEST_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_ |
| 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_ | 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "base/supports_user_data.h" | 10 #include "base/supports_user_data.h" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 base::WeakPtr<ServiceWorkerContextCore> context, | 68 base::WeakPtr<ServiceWorkerContextCore> context, |
| 69 base::WeakPtr<ServiceWorkerProviderHost> provider_host, | 69 base::WeakPtr<ServiceWorkerProviderHost> provider_host, |
| 70 base::WeakPtr<webkit_blob::BlobStorageContext> blob_storage_context, | 70 base::WeakPtr<webkit_blob::BlobStorageContext> blob_storage_context, |
| 71 ResourceType::Type resource_type); | 71 ResourceType::Type resource_type); |
| 72 | 72 |
| 73 base::WeakPtr<ServiceWorkerContextCore> context_; | 73 base::WeakPtr<ServiceWorkerContextCore> context_; |
| 74 base::WeakPtr<ServiceWorkerProviderHost> provider_host_; | 74 base::WeakPtr<ServiceWorkerProviderHost> provider_host_; |
| 75 base::WeakPtr<webkit_blob::BlobStorageContext> blob_storage_context_; | 75 base::WeakPtr<webkit_blob::BlobStorageContext> blob_storage_context_; |
| 76 ResourceType::Type resource_type_; | 76 ResourceType::Type resource_type_; |
| 77 | 77 |
| 78 private: |
| 78 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRequestHandler); | 79 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerRequestHandler); |
| 79 }; | 80 }; |
| 80 | 81 |
| 81 } // namespace content | 82 } // namespace content |
| 82 | 83 |
| 83 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_ | 84 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_REQUEST_HANDLER_H_ |
| OLD | NEW |