| 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_VERSION_H_ | 5 #ifndef CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_ |
| 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_ | 6 #define CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| 11 #include "base/callback.h" | 11 #include "base/callback.h" |
| 12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 13 #include "base/id_map.h" | 13 #include "base/id_map.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "content/browser/service_worker/embedded_worker_instance.h" | 16 #include "content/browser/service_worker/embedded_worker_instance.h" |
| 17 #include "content/common/content_export.h" | 17 #include "content/common/content_export.h" |
| 18 #include "content/common/service_worker/service_worker_status_code.h" | 18 #include "content/common/service_worker/service_worker_status_code.h" |
| 19 | 19 |
| 20 class GURL; | 20 class GURL; |
| 21 | 21 |
| 22 namespace content { | 22 namespace content { |
| 23 | 23 |
| 24 class EmbeddedWorkerRegistry; | 24 class EmbeddedWorkerRegistry; |
| 25 class ServiceWorkerProviderHost; | |
| 26 class ServiceWorkerRegistration; | 25 class ServiceWorkerRegistration; |
| 27 struct ServiceWorkerFetchRequest; | 26 struct ServiceWorkerFetchRequest; |
| 28 | 27 |
| 29 // This class corresponds to a specific version of a ServiceWorker | 28 // This class corresponds to a specific version of a ServiceWorker |
| 30 // script for a given pattern. When a script is upgraded, there may be | 29 // script for a given pattern. When a script is upgraded, there may be |
| 31 // more than one ServiceWorkerVersion "running" at a time, but only | 30 // more than one ServiceWorkerVersion "running" at a time, but only |
| 32 // one of them is active. This class connects the actual script with a | 31 // one of them is active. This class connects the actual script with a |
| 33 // running worker. | 32 // running worker. |
| 34 // Instances of this class are in one of two install states: | 33 // Instances of this class are in one of two install states: |
| 35 // - Pending: The script is in the process of being installed. There | 34 // - Pending: The script is in the process of being installed. There |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 IDMap<MessageCallback, IDMapOwnPointer> message_callbacks_; | 151 IDMap<MessageCallback, IDMapOwnPointer> message_callbacks_; |
| 153 | 152 |
| 154 base::WeakPtrFactory<ServiceWorkerVersion> weak_factory_; | 153 base::WeakPtrFactory<ServiceWorkerVersion> weak_factory_; |
| 155 | 154 |
| 156 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerVersion); | 155 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerVersion); |
| 157 }; | 156 }; |
| 158 | 157 |
| 159 } // namespace content | 158 } // namespace content |
| 160 | 159 |
| 161 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_ | 160 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_ |
| OLD | NEW |