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

Unified Diff: Source/modules/serviceworkers/ServiceWorkerMessageEventInit.idl

Issue 1130113006: ServiceWorker: Introduce ServiceWorkerMessageEvent to replace MessageEvent (3/3). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: remove custom bindings Created 5 years, 7 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: Source/modules/serviceworkers/ServiceWorkerMessageEventInit.idl
diff --git a/Source/modules/serviceworkers/ServiceWorkerMessageEventInit.idl b/Source/modules/serviceworkers/ServiceWorkerMessageEventInit.idl
new file mode 100644
index 0000000000000000000000000000000000000000..f7b95eacf4c66354c78741dbcb3aa424bf7b016d
--- /dev/null
+++ b/Source/modules/serviceworkers/ServiceWorkerMessageEventInit.idl
@@ -0,0 +1,8 @@
+
+dictionary ServiceWorkerMessageEventInit : EventInit {
+ any data;
+ DOMString origin;
+ DOMString lastEventId;
+ (ServiceWorker or MessagePort)? source;
+ sequence<MessagePort> ports;
+};

Powered by Google App Engine
This is Rietveld 408576698