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

Unified Diff: Source/core/events/MessageEventInit.idl

Issue 1150183007: Re-land: bindings: Use MessageEventInit for MessageEvent constructor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « Source/core/events/MessageEvent.idl ('k') | Source/web/WebDOMMessageEvent.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/events/MessageEventInit.idl
diff --git a/Source/core/events/MessageEventInit.idl b/Source/core/events/MessageEventInit.idl
new file mode 100644
index 0000000000000000000000000000000000000000..d25296560e227796bf7456995fcd93ad5e6f11ed
--- /dev/null
+++ b/Source/core/events/MessageEventInit.idl
@@ -0,0 +1,16 @@
+// Copyright 2015 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://html.spec.whatwg.org/multipage/comms.html#the-messageevent-interfaces
+
+dictionary MessageEventInit : EventInit {
+ any data;
+ DOMString origin;
+ DOMString lastEventId;
+ // TODO(bashi): |source| should be (WindowProxy or MessagePort)?
+ EventTarget source;
+ // Per spec, |ports| isn't nullable, but it seems it should be.
+ // https://www.w3.org/Bugs/Public/show_bug.cgi?id=23176
+ sequence<MessagePort>? ports;
+};
« no previous file with comments | « Source/core/events/MessageEvent.idl ('k') | Source/web/WebDOMMessageEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698