| Index: third_party/WebKit/Source/modules/background_fetch/BackgroundFetchFailEvent.h
|
| diff --git a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchFailEvent.h b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchFailEvent.h
|
| index ca065bf59761db97f14b544d5a974be19025d010..f90fbc0e0a441a59c2a42a060ca634b6ad7172cd 100644
|
| --- a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchFailEvent.h
|
| +++ b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchFailEvent.h
|
| @@ -12,7 +12,7 @@
|
| namespace blink {
|
|
|
| class BackgroundFetchFailEventInit;
|
| -class BackgroundFetchSettledRequest;
|
| +class BackgroundFetchSettledFetch;
|
|
|
| class BackgroundFetchFailEvent final : public BackgroundFetchEvent {
|
| DEFINE_WRAPPERTYPEINFO();
|
| @@ -27,7 +27,7 @@ class BackgroundFetchFailEvent final : public BackgroundFetchEvent {
|
| ~BackgroundFetchFailEvent() override;
|
|
|
| // Web Exposed attribute defined in the IDL file.
|
| - HeapVector<Member<BackgroundFetchSettledRequest>> failedFetches() const;
|
| + HeapVector<Member<BackgroundFetchSettledFetch>> fetches() const;
|
|
|
| // ExtendableEvent interface.
|
| const AtomicString& interfaceName() const override;
|
| @@ -38,7 +38,7 @@ class BackgroundFetchFailEvent final : public BackgroundFetchEvent {
|
| BackgroundFetchFailEvent(const AtomicString& type,
|
| const BackgroundFetchFailEventInit&);
|
|
|
| - HeapVector<Member<BackgroundFetchSettledRequest>> m_failedFetches;
|
| + HeapVector<Member<BackgroundFetchSettledFetch>> m_fetches;
|
| };
|
|
|
| } // namespace blink
|
|
|