Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(664)

Unified Diff: third_party/WebKit/Source/modules/background_fetch/BackgroundFetchFailEvent.h

Issue 2751523008: Update Background Fetch IDLs following spec changes (Closed)
Patch Set: Update Background Fetch IDLs following spec changes Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698