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 "core/dom/ActiveDOMObject.h" | 8 #include "core/dom/ActiveDOMObject.h" |
9 #include "core/events/EventTarget.h" | 9 #include "core/events/EventTarget.h" |
10 #include "modules/serviceworkers/ServiceWorker.h" | 10 #include "modules/serviceworkers/ServiceWorker.h" |
11 #include "modules/serviceworkers/ServiceWorkerRegistration.h" | 11 #include "modules/serviceworkers/ServiceWorkerRegistration.h" |
12 #include "platform/Supplementable.h" | 12 #include "platform/Supplementable.h" |
13 #include "public/platform/WebServiceWorkerRegistration.h" | 13 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistration.h" |
14 #include "public/platform/WebServiceWorkerRegistrationProxy.h" | 14 #include "public/platform/modules/serviceworker/WebServiceWorkerRegistrationProx
y.h" |
15 #include "wtf/OwnPtr.h" | 15 #include "wtf/OwnPtr.h" |
16 #include "wtf/PassOwnPtr.h" | 16 #include "wtf/PassOwnPtr.h" |
17 #include "wtf/PassRefPtr.h" | 17 #include "wtf/PassRefPtr.h" |
18 #include "wtf/RefCounted.h" | 18 #include "wtf/RefCounted.h" |
19 | 19 |
20 namespace blink { | 20 namespace blink { |
21 | 21 |
22 class ScriptPromise; | 22 class ScriptPromise; |
23 class ScriptPromiseResolver; | 23 class ScriptPromiseResolver; |
24 class ScriptState; | 24 class ScriptState; |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
100 } | 100 } |
101 | 101 |
102 private: | 102 private: |
103 WTF_MAKE_NONCOPYABLE(ServiceWorkerRegistrationArray); | 103 WTF_MAKE_NONCOPYABLE(ServiceWorkerRegistrationArray); |
104 ServiceWorkerRegistrationArray() = delete; | 104 ServiceWorkerRegistrationArray() = delete; |
105 }; | 105 }; |
106 | 106 |
107 } // namespace blink | 107 } // namespace blink |
108 | 108 |
109 #endif // ServiceWorkerRegistration_h | 109 #endif // ServiceWorkerRegistration_h |
OLD | NEW |