| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 BackgroundFetchFailEvent_h | 5 #ifndef BackgroundFetchFailEvent_h |
| 6 #define BackgroundFetchFailEvent_h | 6 #define BackgroundFetchFailEvent_h |
| 7 | 7 |
| 8 #include "modules/ModulesExport.h" | 8 #include "modules/ModulesExport.h" |
| 9 #include "modules/background_fetch/BackgroundFetchEvent.h" | 9 #include "modules/background_fetch/BackgroundFetchEvent.h" |
| 10 #include "platform/heap/Handle.h" | 10 #include "platform/heap/Handle.h" |
| 11 #include "platform/wtf/text/AtomicString.h" |
| 11 #include "public/platform/WebVector.h" | 12 #include "public/platform/WebVector.h" |
| 12 #include "wtf/text/AtomicString.h" | |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 class BackgroundFetchFailEventInit; | 16 class BackgroundFetchFailEventInit; |
| 17 class BackgroundFetchSettledFetch; | 17 class BackgroundFetchSettledFetch; |
| 18 class ScriptState; | 18 class ScriptState; |
| 19 struct WebBackgroundFetchSettledFetch; | 19 struct WebBackgroundFetchSettledFetch; |
| 20 | 20 |
| 21 class MODULES_EXPORT BackgroundFetchFailEvent final | 21 class MODULES_EXPORT BackgroundFetchFailEvent final |
| 22 : public BackgroundFetchEvent { | 22 : public BackgroundFetchEvent { |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 58 const WebVector<WebBackgroundFetchSettledFetch>& fetches, | 58 const WebVector<WebBackgroundFetchSettledFetch>& fetches, |
| 59 ScriptState*, | 59 ScriptState*, |
| 60 WaitUntilObserver*); | 60 WaitUntilObserver*); |
| 61 | 61 |
| 62 HeapVector<Member<BackgroundFetchSettledFetch>> fetches_; | 62 HeapVector<Member<BackgroundFetchSettledFetch>> fetches_; |
| 63 }; | 63 }; |
| 64 | 64 |
| 65 } // namespace blink | 65 } // namespace blink |
| 66 | 66 |
| 67 #endif // BackgroundFetchFailEvent_h | 67 #endif // BackgroundFetchFailEvent_h |
| OLD | NEW |