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

Unified Diff: client/dom/generated/src/wrapping/_ErrorEventWrappingImplementation.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/_ErrorEventWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_ErrorEventWrappingImplementation.dart b/client/dom/generated/src/wrapping/_ErrorEventWrappingImplementation.dart
index 3734c1a33c186e72301214800ef538985bf74a66..ea3c00b7c8e4c6c6713667b1ad80abded2c7ab01 100644
--- a/client/dom/generated/src/wrapping/_ErrorEventWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_ErrorEventWrappingImplementation.dart
@@ -11,14 +11,14 @@ class _ErrorEventWrappingImplementation extends _EventWrappingImplementation imp
return new _ErrorEventWrappingImplementation();
}
- String get filename() { return _get__ErrorEvent_filename(this); }
- static String _get__ErrorEvent_filename(var _this) native;
+ String get filename() { return _get_filename(this); }
+ static String _get_filename(var _this) native;
- int get lineno() { return _get__ErrorEvent_lineno(this); }
- static int _get__ErrorEvent_lineno(var _this) native;
+ int get lineno() { return _get_lineno(this); }
+ static int _get_lineno(var _this) native;
- String get message() { return _get__ErrorEvent_message(this); }
- static String _get__ErrorEvent_message(var _this) native;
+ String get message() { return _get_message(this); }
+ static String _get_message(var _this) native;
void initErrorEvent(String typeArg, bool canBubbleArg, bool cancelableArg, String messageArg, String filenameArg, int linenoArg) {
_initErrorEvent(this, typeArg, canBubbleArg, cancelableArg, messageArg, filenameArg, linenoArg);

Powered by Google App Engine
This is Rietveld 408576698