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

Unified Diff: client/html/src/MessageEvent.dart

Issue 8786002: Check that interface constructors and default class constructors are compatible. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Check that types of constructors parameters are identical Created 9 years 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: client/html/src/MessageEvent.dart
diff --git a/client/html/src/MessageEvent.dart b/client/html/src/MessageEvent.dart
index 5df049728fb0bbdabd80954e59870ae9e0182636..a215d5012f349ff54a051dd37923f913e4e7c4a6 100644
--- a/client/html/src/MessageEvent.dart
+++ b/client/html/src/MessageEvent.dart
@@ -5,7 +5,7 @@
interface MessageEvent extends Event factory MessageEventWrappingImplementation {
MessageEvent(String type, String data, String origin, String lastEventId,
- Window source, [bool canBubble, bool cancelable, MessagePort port]);
+ Window source, MessagePort port, [bool canBubble, bool cancelable]);
String get data();

Powered by Google App Engine
This is Rietveld 408576698