summaryrefslogtreecommitdiff
path: root/chromium/third_party/WebKit/Source/modules/serviceworkers/FetchEventInit.idl
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/WebKit/Source/modules/serviceworkers/FetchEventInit.idl')
-rw-r--r--chromium/third_party/WebKit/Source/modules/serviceworkers/FetchEventInit.idl5
1 files changed, 3 insertions, 2 deletions
diff --git a/chromium/third_party/WebKit/Source/modules/serviceworkers/FetchEventInit.idl b/chromium/third_party/WebKit/Source/modules/serviceworkers/FetchEventInit.idl
index cac8bbeb212..80da60fd154 100644
--- a/chromium/third_party/WebKit/Source/modules/serviceworkers/FetchEventInit.idl
+++ b/chromium/third_party/WebKit/Source/modules/serviceworkers/FetchEventInit.idl
@@ -5,6 +5,7 @@
// https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#fetch-event-interface
dictionary FetchEventInit : ExtendableEventInit {
- Request request;
- boolean isReload = false;
+ required Request request;
+ DOMString? clientId = null;
+ boolean isReload = false;
};