| 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 <map> | 8 #include <map> |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "base/timer/timer.h" | 21 #include "base/timer/timer.h" |
| 22 #include "content/browser/service_worker/embedded_worker_instance.h" | 22 #include "content/browser/service_worker/embedded_worker_instance.h" |
| 23 #include "content/browser/service_worker/service_worker_script_cache_map.h" | 23 #include "content/browser/service_worker/service_worker_script_cache_map.h" |
| 24 #include "content/common/background_sync_service.mojom.h" | 24 #include "content/common/background_sync_service.mojom.h" |
| 25 #include "content/common/content_export.h" | 25 #include "content/common/content_export.h" |
| 26 #include "content/common/service_port_service.mojom.h" | 26 #include "content/common/service_port_service.mojom.h" |
| 27 #include "content/common/service_worker/service_worker_status_code.h" | 27 #include "content/common/service_worker/service_worker_status_code.h" |
| 28 #include "content/common/service_worker/service_worker_types.h" | 28 #include "content/common/service_worker/service_worker_types.h" |
| 29 #include "content/public/common/service_registry.h" | 29 #include "content/public/common/service_registry.h" |
| 30 #include "third_party/WebKit/public/platform/WebGeofencingEventType.h" | 30 #include "third_party/WebKit/public/platform/WebGeofencingEventType.h" |
| 31 #include "third_party/WebKit/public/platform/WebServiceWorkerEventResult.h" | 31 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor
kerEventResult.h" |
| 32 | 32 |
| 33 // Windows headers will redefine SendMessage. | 33 // Windows headers will redefine SendMessage. |
| 34 #ifdef SendMessage | 34 #ifdef SendMessage |
| 35 #undef SendMessage | 35 #undef SendMessage |
| 36 #endif | 36 #endif |
| 37 | 37 |
| 38 class GURL; | 38 class GURL; |
| 39 | 39 |
| 40 namespace blink { | 40 namespace blink { |
| 41 struct WebCircularGeofencingRegion; | 41 struct WebCircularGeofencingRegion; |
| (...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 scoped_ptr<Metrics> metrics_; | 624 scoped_ptr<Metrics> metrics_; |
| 625 | 625 |
| 626 base::WeakPtrFactory<ServiceWorkerVersion> weak_factory_; | 626 base::WeakPtrFactory<ServiceWorkerVersion> weak_factory_; |
| 627 | 627 |
| 628 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerVersion); | 628 DISALLOW_COPY_AND_ASSIGN(ServiceWorkerVersion); |
| 629 }; | 629 }; |
| 630 | 630 |
| 631 } // namespace content | 631 } // namespace content |
| 632 | 632 |
| 633 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_ | 633 #endif // CONTENT_BROWSER_SERVICE_WORKER_SERVICE_WORKER_VERSION_H_ |
| OLD | NEW |