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

Unified Diff: third_party/WebKit/Source/modules/background_fetch/BackgroundFetchOptions.idl

Issue 2762663002: BackgroundFetchRegistration.abort() should return a Promise. (Closed)
Patch Set: 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/BackgroundFetchOptions.idl
diff --git a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchOptions.idl b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchOptions.idl
index 79129796022ba79e2fc6c9ff1d3cc7efe2cb3a6a..6fb2a17bfffadb301894e494cc6e5a0145f3141d 100644
--- a/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchOptions.idl
+++ b/third_party/WebKit/Source/modules/background_fetch/BackgroundFetchOptions.idl
@@ -5,7 +5,7 @@
// https://wicg.github.io/background-fetch/#background-fetch-manager
dictionary BackgroundFetchOptions {
- sequence<IconDefinition> icons;
- DOMString title;
- long totalDownloadSize;
+ sequence<IconDefinition> icons = [];
+ DOMString title = "";
+ long totalDownloadSize = 0;
};

Powered by Google App Engine
This is Rietveld 408576698