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

Unified Diff: client/dom/generated/src/wrapping/_OverflowEventWrappingImplementation.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/_OverflowEventWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_OverflowEventWrappingImplementation.dart b/client/dom/generated/src/wrapping/_OverflowEventWrappingImplementation.dart
index 3cbcef686975ca12b78d4d371a248ebaa73d349a..f553bd52c1c4cc4a5cc8d367af7382ae43e74908 100644
--- a/client/dom/generated/src/wrapping/_OverflowEventWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_OverflowEventWrappingImplementation.dart
@@ -11,14 +11,14 @@ class _OverflowEventWrappingImplementation extends _EventWrappingImplementation
return new _OverflowEventWrappingImplementation();
}
- bool get horizontalOverflow() { return _get__OverflowEvent_horizontalOverflow(this); }
- static bool _get__OverflowEvent_horizontalOverflow(var _this) native;
+ bool get horizontalOverflow() { return _get_horizontalOverflow(this); }
+ static bool _get_horizontalOverflow(var _this) native;
- int get orient() { return _get__OverflowEvent_orient(this); }
- static int _get__OverflowEvent_orient(var _this) native;
+ int get orient() { return _get_orient(this); }
+ static int _get_orient(var _this) native;
- bool get verticalOverflow() { return _get__OverflowEvent_verticalOverflow(this); }
- static bool _get__OverflowEvent_verticalOverflow(var _this) native;
+ bool get verticalOverflow() { return _get_verticalOverflow(this); }
+ static bool _get_verticalOverflow(var _this) native;
void initOverflowEvent(int orient, bool horizontalOverflow, bool verticalOverflow) {
_initOverflowEvent(this, orient, horizontalOverflow, verticalOverflow);

Powered by Google App Engine
This is Rietveld 408576698