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

Unified Diff: lib/dom/src/native_DOMImplementation.dart

Issue 10392159: Adjust postMessage signature. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/dom/src/native_DOMImplementation.dart
diff --git a/lib/dom/src/native_DOMImplementation.dart b/lib/dom/src/native_DOMImplementation.dart
index 7a085d048167c00313fabdbae3ee382c053eff60..677975125cbf7be8e14e088b7c911e9bb7d14f87 100644
--- a/lib/dom/src/native_DOMImplementation.dart
+++ b/lib/dom/src/native_DOMImplementation.dart
@@ -62,7 +62,7 @@ class DOMWindowCrossFrameImplementation extends DOMWrapperBase implements DOMWin
void focus() native "DOMWindow_focus_Callback";
void blur() native "DOMWindow_blur_Callback";
void close() native "DOMWindow_close_Callback";
- void postMessage([_arg0, _arg1, _arg2]) native "DOMWindow_postMessage_Callback";
+ void postMessage(/*SerializedScriptValue*/ message, String targetOrigin, [List messagePorts]) native "DOMWindow_postMessage_Callback";
Anton Muhin 2012/05/18 10:53:17 just copied from generated interface.
// Implementation support.
static DOMWindowCrossFrameImplementation _createDOMWindowCrossFrameImplementation() => new DOMWindowCrossFrameImplementation._createDOMWindowCrossFrameImplementation();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698