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

Unified Diff: client/dom/generated/src/wrapping/_ScreenWrappingImplementation.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/_ScreenWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_ScreenWrappingImplementation.dart b/client/dom/generated/src/wrapping/_ScreenWrappingImplementation.dart
index ecf9f34f1e005572d771e1d7f9862f979855c90f..b9491638e77a521a8bca9934fd12254f0ee6a2a3 100644
--- a/client/dom/generated/src/wrapping/_ScreenWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_ScreenWrappingImplementation.dart
@@ -11,29 +11,29 @@ class _ScreenWrappingImplementation extends DOMWrapperBase implements Screen {
return new _ScreenWrappingImplementation();
}
- int get availHeight() { return _get__Screen_availHeight(this); }
- static int _get__Screen_availHeight(var _this) native;
+ int get availHeight() { return _get_availHeight(this); }
+ static int _get_availHeight(var _this) native;
- int get availLeft() { return _get__Screen_availLeft(this); }
- static int _get__Screen_availLeft(var _this) native;
+ int get availLeft() { return _get_availLeft(this); }
+ static int _get_availLeft(var _this) native;
- int get availTop() { return _get__Screen_availTop(this); }
- static int _get__Screen_availTop(var _this) native;
+ int get availTop() { return _get_availTop(this); }
+ static int _get_availTop(var _this) native;
- int get availWidth() { return _get__Screen_availWidth(this); }
- static int _get__Screen_availWidth(var _this) native;
+ int get availWidth() { return _get_availWidth(this); }
+ static int _get_availWidth(var _this) native;
- int get colorDepth() { return _get__Screen_colorDepth(this); }
- static int _get__Screen_colorDepth(var _this) native;
+ int get colorDepth() { return _get_colorDepth(this); }
+ static int _get_colorDepth(var _this) native;
- int get height() { return _get__Screen_height(this); }
- static int _get__Screen_height(var _this) native;
+ int get height() { return _get_height(this); }
+ static int _get_height(var _this) native;
- int get pixelDepth() { return _get__Screen_pixelDepth(this); }
- static int _get__Screen_pixelDepth(var _this) native;
+ int get pixelDepth() { return _get_pixelDepth(this); }
+ static int _get_pixelDepth(var _this) native;
- int get width() { return _get__Screen_width(this); }
- static int _get__Screen_width(var _this) native;
+ int get width() { return _get_width(this); }
+ static int _get_width(var _this) native;
String get typeName() { return "Screen"; }
}

Powered by Google App Engine
This is Rietveld 408576698