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

Unified Diff: client/dom/generated/src/wrapping/_ProgressEventWrappingImplementation.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/_ProgressEventWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_ProgressEventWrappingImplementation.dart b/client/dom/generated/src/wrapping/_ProgressEventWrappingImplementation.dart
index 18b224cc7a3a4f1fe430ed3a64f02035373f6753..48e746059c4c30cf7ae08ed9c521da0583e90bc4 100644
--- a/client/dom/generated/src/wrapping/_ProgressEventWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_ProgressEventWrappingImplementation.dart
@@ -11,14 +11,14 @@ class _ProgressEventWrappingImplementation extends _EventWrappingImplementation
return new _ProgressEventWrappingImplementation();
}
- bool get lengthComputable() { return _get__ProgressEvent_lengthComputable(this); }
- static bool _get__ProgressEvent_lengthComputable(var _this) native;
+ bool get lengthComputable() { return _get_lengthComputable(this); }
+ static bool _get_lengthComputable(var _this) native;
- int get loaded() { return _get__ProgressEvent_loaded(this); }
- static int _get__ProgressEvent_loaded(var _this) native;
+ int get loaded() { return _get_loaded(this); }
+ static int _get_loaded(var _this) native;
- int get total() { return _get__ProgressEvent_total(this); }
- static int _get__ProgressEvent_total(var _this) native;
+ int get total() { return _get_total(this); }
+ static int _get_total(var _this) native;
void initProgressEvent(String typeArg, bool canBubbleArg, bool cancelableArg, bool lengthComputableArg, int loadedArg, int totalArg) {
_initProgressEvent(this, typeArg, canBubbleArg, cancelableArg, lengthComputableArg, loadedArg, totalArg);

Powered by Google App Engine
This is Rietveld 408576698