| 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_FETCH_DISPATCHER_H_ | 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_FETCH_DISPATCHER_H_ |
| 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_FETCH_DISPATCHER_H_ | 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_FETCH_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/callback.h" | 9 #include "base/callback.h" |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "content/common/service_worker/service_worker_status_code.h" | |
| 12 #include "content/common/service_worker/service_worker_types.h" | 11 #include "content/common/service_worker/service_worker_types.h" |
| 12 #include "content/public/common/service_worker_status_code.h" |
| 13 | 13 |
| 14 namespace net { | 14 namespace net { |
| 15 class URLRequest; | 15 class URLRequest; |
| 16 } | 16 } |
| 17 | 17 |
| 18 namespace content { | 18 namespace content { |
| 19 | 19 |
| 20 class ServiceWorkerVersion; | 20 class ServiceWorkerVersion; |
| 21 | 21 |
| 22 // A helper class to dispatch fetch event to a service worker. | 22 // A helper class to dispatch fetch event to a service worker. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 48 FetchCallback callback_; | 48 FetchCallback callback_; |
| 49 ServiceWorkerFetchRequest request_; | 49 ServiceWorkerFetchRequest request_; |
| 50 base::WeakPtrFactory<ServiceWorkerFetchDispatcher> weak_factory_; | 50 base::WeakPtrFactory<ServiceWorkerFetchDispatcher> weak_factory_; |
| 51 | 51 |
| 52 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerFetchDispatcher); | 52 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerFetchDispatcher); |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 } // namespace content | 55 } // namespace content |
| 56 | 56 |
| 57 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_FETCH_DISPATCHER_H_ | 57 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_FETCH_DISPATCHER_H_ |
| OLD | NEW |