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

Unified Diff: client/dom/idl/dart/dart.idl

Issue 8574040: Support DOMString[] and regenerate from IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Window.postMessage Created 9 years, 1 month 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 | « client/dom/generated/wrapping_dom_externs.js ('k') | client/dom/monkey_dom.dart.broken » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/idl/dart/dart.idl
diff --git a/client/dom/idl/dart/dart.idl b/client/dom/idl/dart/dart.idl
index b8836c6572bc4814c0fd81d8024d42377420458c..e6c92b2ac38d7b8c995c94571490fe3ded5b3c3d 100644
--- a/client/dom/idl/dart/dart.idl
+++ b/client/dom/idl/dart/dart.idl
@@ -32,26 +32,6 @@ module dom {
Element implements ElementTraversal;
};
-module window {
- [Supplemental]
- interface Window {
- // Provide a different signature for postMessage. Because one of the
- // desired signatures conflicts with an existing option, it is simpler to
- // completely suppress postMessage and introduce a new
- // postMessage_replacement that is renamed as postMessage.
- [Suppressed] void postMessage(in SerializedScriptValue message, [Optional] in MessagePort messagePort, in DOMString targetOrigin)
- raises(DOMException);
-
- [DartName=postMessage, ImplementationFunction=postMessage]
- void postMessage_replacement(in SerializedScriptValue message, in DOMString targetOrigin)
- raises(DOMException);
- [DartName=postMessage, ImplementationFunction=postMessage]
- void postMessage_replacement(in SerializedScriptValue message, in MessagePort messagePort, in DOMString targetOrigin)
- raises(DOMException);
-
- };
-};
-
module html {
[Supplemental]
interface Console {
« no previous file with comments | « client/dom/generated/wrapping_dom_externs.js ('k') | client/dom/monkey_dom.dart.broken » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698