| 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 ServiceWorkerRegistration_h | 5 #ifndef ServiceWorkerRegistration_h |
| 6 #define ServiceWorkerRegistration_h | 6 #define ServiceWorkerRegistration_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ActiveScriptWrappable.h" | 8 #include "bindings/core/v8/ActiveScriptWrappable.h" |
| 9 #include "bindings/core/v8/ScriptPromiseResolver.h" | 9 #include "bindings/core/v8/ScriptPromiseResolver.h" |
| 10 #include "core/dom/ActiveDOMObject.h" | 10 #include "core/dom/ActiveDOMObject.h" |
| 11 #include "core/events/EventTarget.h" | 11 #include "core/events/EventTarget.h" |
| 12 #include "modules/serviceworkers/NavigationPreloadManager.h" | 12 #include "modules/serviceworkers/NavigationPreloadManager.h" |
| 13 #include "modules/serviceworkers/ServiceWorker.h" | 13 #include "modules/serviceworkers/ServiceWorker.h" |
| 14 #include "modules/serviceworkers/ServiceWorkerRegistration.h" | 14 #include "modules/serviceworkers/ServiceWorkerRegistration.h" |
| 15 #include "platform/Supplementable.h" | 15 #include "platform/Supplementable.h" |
| 16 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistration.h" | 16 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistration.h" |
| 17 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistrationProx
y.h" | 17 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistrationProx
y.h" |
| 18 #include "wtf/Forward.h" | 18 #include "wtf/Forward.h" |
| 19 #include <memory> | 19 #include <memory> |
| 20 | 20 |
| 21 namespace blink { | 21 namespace blink { |
| 22 | 22 |
| 23 class ScriptPromise; | 23 class ScriptPromise; |
| 24 class ScriptState; | 24 class ScriptState; |
| 25 class WebServiceWorkerProvider; | |
| 26 | 25 |
| 27 // The implementation of a service worker registration object in Blink. Actual | 26 // The implementation of a service worker registration object in Blink. Actual |
| 28 // registration representation is in the embedder and this class accesses it | 27 // registration representation is in the embedder and this class accesses it |
| 29 // via WebServiceWorkerRegistration::Handle object. | 28 // via WebServiceWorkerRegistration::Handle object. |
| 30 class ServiceWorkerRegistration final | 29 class ServiceWorkerRegistration final |
| 31 : public EventTargetWithInlineData, | 30 : public EventTargetWithInlineData, |
| 32 public ActiveScriptWrappable, | 31 public ActiveScriptWrappable, |
| 33 public ActiveDOMObject, | 32 public ActiveDOMObject, |
| 34 public WebServiceWorkerRegistrationProxy, | 33 public WebServiceWorkerRegistrationProxy, |
| 35 public Supplementable<ServiceWorkerRegistration> { | 34 public Supplementable<ServiceWorkerRegistration> { |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 for (auto& registration : *webServiceWorkerRegistrations) | 110 for (auto& registration : *webServiceWorkerRegistrations) |
| 112 registrations.append(ServiceWorkerRegistration::getOrCreate( | 111 registrations.append(ServiceWorkerRegistration::getOrCreate( |
| 113 resolver->getExecutionContext(), std::move(registration))); | 112 resolver->getExecutionContext(), std::move(registration))); |
| 114 return registrations; | 113 return registrations; |
| 115 } | 114 } |
| 116 }; | 115 }; |
| 117 | 116 |
| 118 } // namespace blink | 117 } // namespace blink |
| 119 | 118 |
| 120 #endif // ServiceWorkerRegistration_h | 119 #endif // ServiceWorkerRegistration_h |
| OLD | NEW |