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

Unified Diff: client/dom/generated/src/wrapping/_MessageEventWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak 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
Index: client/dom/generated/src/wrapping/_MessageEventWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_MessageEventWrappingImplementation.dart b/client/dom/generated/src/wrapping/_MessageEventWrappingImplementation.dart
index f895cec6cf6cd6f073e307d68ec5ed7eabc28589..1a8dacb10ed47814d96595423fce3e7fd325f610 100644
--- a/client/dom/generated/src/wrapping/_MessageEventWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_MessageEventWrappingImplementation.dart
@@ -11,20 +11,20 @@ class _MessageEventWrappingImplementation extends _EventWrappingImplementation i
return new _MessageEventWrappingImplementation();
}
- Object get data() { return _get__MessageEvent_data(this); }
- static Object _get__MessageEvent_data(var _this) native;
+ Object get data() { return _get_data(this); }
+ static Object _get_data(var _this) native;
- String get lastEventId() { return _get__MessageEvent_lastEventId(this); }
- static String _get__MessageEvent_lastEventId(var _this) native;
+ String get lastEventId() { return _get_lastEventId(this); }
+ static String _get_lastEventId(var _this) native;
- String get origin() { return _get__MessageEvent_origin(this); }
- static String _get__MessageEvent_origin(var _this) native;
+ String get origin() { return _get_origin(this); }
+ static String _get_origin(var _this) native;
- List get ports() { return _get__MessageEvent_ports(this); }
- static List _get__MessageEvent_ports(var _this) native;
+ List get ports() { return _get_ports(this); }
+ static List _get_ports(var _this) native;
- DOMWindow get source() { return _get__MessageEvent_source(this); }
- static DOMWindow _get__MessageEvent_source(var _this) native;
+ DOMWindow get source() { return _get_source(this); }
+ static DOMWindow _get_source(var _this) native;
void initMessageEvent(String typeArg, bool canBubbleArg, bool cancelableArg, Object dataArg, String originArg, String lastEventIdArg, DOMWindow sourceArg, List messagePorts) {
_initMessageEvent(this, typeArg, canBubbleArg, cancelableArg, dataArg, originArg, lastEventIdArg, sourceArg, messagePorts);

Powered by Google App Engine
This is Rietveld 408576698