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

Unified Diff: client/dom/generated/src/wrapping/_SVGComponentTransferFunctionElementWrappingImplementation.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/_SVGComponentTransferFunctionElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_SVGComponentTransferFunctionElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_SVGComponentTransferFunctionElementWrappingImplementation.dart
new file mode 100644
index 0000000000000000000000000000000000000000..a5976b86a1ff2c316ce80cb96e7a0ae44159fee7
--- /dev/null
+++ b/client/dom/generated/src/wrapping/_SVGComponentTransferFunctionElementWrappingImplementation.dart
@@ -0,0 +1,36 @@
+// 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 _SVGComponentTransferFunctionElementWrappingImplementation extends _SVGElementWrappingImplementation implements SVGComponentTransferFunctionElement {
+ _SVGComponentTransferFunctionElementWrappingImplementation() : super() {}
+
+ static create__SVGComponentTransferFunctionElementWrappingImplementation() native {
+ return new _SVGComponentTransferFunctionElementWrappingImplementation();
+ }
+
+ SVGAnimatedNumber get amplitude() { return _get_amplitude(this); }
+ static SVGAnimatedNumber _get_amplitude(var _this) native;
+
+ SVGAnimatedNumber get exponent() { return _get_exponent(this); }
+ static SVGAnimatedNumber _get_exponent(var _this) native;
+
+ SVGAnimatedNumber get intercept() { return _get_intercept(this); }
+ static SVGAnimatedNumber _get_intercept(var _this) native;
+
+ SVGAnimatedNumber get offset() { return _get_offset(this); }
+ static SVGAnimatedNumber _get_offset(var _this) native;
+
+ SVGAnimatedNumber get slope() { return _get_slope(this); }
+ static SVGAnimatedNumber _get_slope(var _this) native;
+
+ SVGAnimatedNumberList get tableValues() { return _get_tableValues(this); }
+ static SVGAnimatedNumberList _get_tableValues(var _this) native;
+
+ SVGAnimatedEnumeration get type() { return _get_type(this); }
+ static SVGAnimatedEnumeration _get_type(var _this) native;
+
+ String get typeName() { return "SVGComponentTransferFunctionElement"; }
+}

Powered by Google App Engine
This is Rietveld 408576698