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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/ExtendableMessageEventInit.idl

Issue 1658073002: ServiceWorker: Implement attributes of ExtendableMessageEvent (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: templatize duplicate code Created 4 years, 10 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/serviceworkers/ExtendableMessageEventInit.idl
diff --git a/third_party/WebKit/Source/modules/serviceworkers/ExtendableMessageEventInit.idl b/third_party/WebKit/Source/modules/serviceworkers/ExtendableMessageEventInit.idl
index b7d25443ac4556f237e8403f1eb5a457bf6ee7da..9d3bbe0f76cfc6600d898ef28f73fe179d8d4416 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/ExtendableMessageEventInit.idl
+++ b/third_party/WebKit/Source/modules/serviceworkers/ExtendableMessageEventInit.idl
@@ -7,10 +7,9 @@
[
RuntimeEnabled=ServiceWorkerExtendableMessageEvent,
] dictionary ExtendableMessageEventInit : ExtendableEventInit {
- // TODO(nhiroki): Implement these attributes (crbug.com/543198).
- // any data;
- // DOMString origin;
- // DOMString lastEventId;
- // (Client or ServiceWorker or MessagePort)? source;
- // sequence<MessagePort>? ports;
+ any data;
+ DOMString origin;
+ DOMString lastEventId;
+ (Client or ServiceWorker or MessagePort)? source;
+ sequence<MessagePort>? ports;
};

Powered by Google App Engine
This is Rietveld 408576698