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

Unified Diff: third_party/WebKit/public/platform/modules/background_fetch/background_fetch.mojom

Issue 2762303002: Enable transmitting Fetch Requests over Mojo (Closed)
Patch Set: rebase 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/public/platform/modules/background_fetch/background_fetch.mojom
diff --git a/third_party/WebKit/public/platform/modules/background_fetch/background_fetch.mojom b/third_party/WebKit/public/platform/modules/background_fetch/background_fetch.mojom
index da50934a03af1d7984c571ba7cbc80057fb508c8..6e674325bd5b3fb51171c23ff22d8998ab7bfa3d 100644
--- a/third_party/WebKit/public/platform/modules/background_fetch/background_fetch.mojom
+++ b/third_party/WebKit/public/platform/modules/background_fetch/background_fetch.mojom
@@ -4,6 +4,8 @@
module blink.mojom;
+import "third_party/WebKit/public/platform/modules/fetch/request.mojom";
+
enum BackgroundFetchError {
NONE,
DUPLICATED_TAG,
@@ -43,6 +45,7 @@ interface BackgroundFetchService {
// given |options| for the sequence of |requests|.
Fetch(int64 service_worker_registration_id,
string tag,
+ array<FetchAPIRequest> requests,
BackgroundFetchOptions options)
=> (BackgroundFetchError error,
BackgroundFetchRegistration? registration);

Powered by Google App Engine
This is Rietveld 408576698