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

Unified Diff: modules/serviceworkers/ExtendableMessageEvent.idl

Issue 2786203002: Roll 50: Copied IDLs, PYTHON scripts from WebKit removed deleted files in WebCore (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
« no previous file with comments | « modules/serviceworkers/ExtendableEvent.idl ('k') | modules/serviceworkers/ExtendableMessageEventInit.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: modules/serviceworkers/ExtendableMessageEvent.idl
diff --git a/modules/serviceworkers/ExtendableMessageEvent.idl b/modules/serviceworkers/ExtendableMessageEvent.idl
new file mode 100644
index 0000000000000000000000000000000000000000..6da6bbfbba834d70fe7911d9b3f480d2c3ddacff
--- /dev/null
+++ b/modules/serviceworkers/ExtendableMessageEvent.idl
@@ -0,0 +1,21 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// https://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html#extendablemessage-event-section
+
+[
+ // TODO(bashi): Stop using CustomConstructor once we solve reference
+ // circulation between Blink and V8. http://crbug.com/501866
+ // Constructor should be:
+ // Constructor(DOMString type, optional ExtendableMessageEventInit eventInitDict),
+ CustomConstructor,
+ Exposed=ServiceWorker,
+ RuntimeEnabled=ServiceWorkerExtendableMessageEvent,
+] interface ExtendableMessageEvent : ExtendableEvent {
+ [Custom=Getter] readonly attribute any data;
+ readonly attribute DOMString origin;
+ readonly attribute DOMString lastEventId;
+ [SameObject] readonly attribute (Client or ServiceWorker or MessagePort)? source;
+ [SameObject] readonly attribute MessagePort[]? ports;
+};
« no previous file with comments | « modules/serviceworkers/ExtendableEvent.idl ('k') | modules/serviceworkers/ExtendableMessageEventInit.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698