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

Unified Diff: client/dom/generated/src/wrapping/_SVGAngleWrappingImplementation.dart

Issue 8618007: Enable SVG for dartc and frog (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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/_SVGAngleWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_SVGAngleWrappingImplementation.dart b/client/dom/generated/src/wrapping/_SVGAngleWrappingImplementation.dart
new file mode 100644
index 0000000000000000000000000000000000000000..be116b687c030b8342db1c58cd60c7e155b1a9b5
--- /dev/null
+++ b/client/dom/generated/src/wrapping/_SVGAngleWrappingImplementation.dart
@@ -0,0 +1,48 @@
+// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING: Do not edit - generated code.
+
+class _SVGAngleWrappingImplementation extends DOMWrapperBase implements SVGAngle {
+ _SVGAngleWrappingImplementation() : super() {}
+
+ static create__SVGAngleWrappingImplementation() native {
+ return new _SVGAngleWrappingImplementation();
+ }
+
+ int get unitType() { return _get_unitType(this); }
+ static int _get_unitType(var _this) native;
+
+ num get value() { return _get_value(this); }
+ static num _get_value(var _this) native;
+
+ void set value(num value) { _set_value(this, value); }
+ static void _set_value(var _this, num value) native;
+
+ String get valueAsString() { return _get_valueAsString(this); }
+ static String _get_valueAsString(var _this) native;
+
+ void set valueAsString(String value) { _set_valueAsString(this, value); }
+ static void _set_valueAsString(var _this, String value) native;
+
+ num get valueInSpecifiedUnits() { return _get_valueInSpecifiedUnits(this); }
+ static num _get_valueInSpecifiedUnits(var _this) native;
+
+ void set valueInSpecifiedUnits(num value) { _set_valueInSpecifiedUnits(this, value); }
+ static void _set_valueInSpecifiedUnits(var _this, num value) native;
+
+ void convertToSpecifiedUnits(int unitType) {
+ _convertToSpecifiedUnits(this, unitType);
+ return;
+ }
+ static void _convertToSpecifiedUnits(receiver, unitType) native;
+
+ void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) {
+ _newValueSpecifiedUnits(this, unitType, valueInSpecifiedUnits);
+ return;
+ }
+ static void _newValueSpecifiedUnits(receiver, unitType, valueInSpecifiedUnits) native;
+
+ String get typeName() { return "SVGAngle"; }
+}

Powered by Google App Engine
This is Rietveld 408576698