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

Unified Diff: client/dom/generated/src/wrapping/_UIEventWrappingImplementation.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/_UIEventWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_UIEventWrappingImplementation.dart b/client/dom/generated/src/wrapping/_UIEventWrappingImplementation.dart
index 92dc6c205e0b75a14bf4c73c687668b2e689e9e1..02170f255e43610cf301b625f253531c49b0c69f 100644
--- a/client/dom/generated/src/wrapping/_UIEventWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_UIEventWrappingImplementation.dart
@@ -11,32 +11,32 @@ class _UIEventWrappingImplementation extends _EventWrappingImplementation implem
return new _UIEventWrappingImplementation();
}
- int get charCode() { return _get__UIEvent_charCode(this); }
- static int _get__UIEvent_charCode(var _this) native;
+ int get charCode() { return _get_charCode(this); }
+ static int _get_charCode(var _this) native;
- int get detail() { return _get__UIEvent_detail(this); }
- static int _get__UIEvent_detail(var _this) native;
+ int get detail() { return _get_detail(this); }
+ static int _get_detail(var _this) native;
- int get keyCode() { return _get__UIEvent_keyCode(this); }
- static int _get__UIEvent_keyCode(var _this) native;
+ int get keyCode() { return _get_keyCode(this); }
+ static int _get_keyCode(var _this) native;
- int get layerX() { return _get__UIEvent_layerX(this); }
- static int _get__UIEvent_layerX(var _this) native;
+ int get layerX() { return _get_layerX(this); }
+ static int _get_layerX(var _this) native;
- int get layerY() { return _get__UIEvent_layerY(this); }
- static int _get__UIEvent_layerY(var _this) native;
+ int get layerY() { return _get_layerY(this); }
+ static int _get_layerY(var _this) native;
- int get pageX() { return _get__UIEvent_pageX(this); }
- static int _get__UIEvent_pageX(var _this) native;
+ int get pageX() { return _get_pageX(this); }
+ static int _get_pageX(var _this) native;
- int get pageY() { return _get__UIEvent_pageY(this); }
- static int _get__UIEvent_pageY(var _this) native;
+ int get pageY() { return _get_pageY(this); }
+ static int _get_pageY(var _this) native;
- DOMWindow get view() { return _get__UIEvent_view(this); }
- static DOMWindow _get__UIEvent_view(var _this) native;
+ DOMWindow get view() { return _get_view(this); }
+ static DOMWindow _get_view(var _this) native;
- int get which() { return _get__UIEvent_which(this); }
- static int _get__UIEvent_which(var _this) native;
+ int get which() { return _get_which(this); }
+ static int _get_which(var _this) native;
void initUIEvent(String type, bool canBubble, bool cancelable, DOMWindow view, int detail) {
_initUIEvent(this, type, canBubble, cancelable, view, detail);

Powered by Google App Engine
This is Rietveld 408576698