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

Unified Diff: client/dom/generated/src/wrapping/_SVGFESpotLightElementWrappingImplementation.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/_SVGFESpotLightElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_SVGFESpotLightElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_SVGFESpotLightElementWrappingImplementation.dart
new file mode 100644
index 0000000000000000000000000000000000000000..770769cfe4a2cc8bc39d85411abe6edee4674612
--- /dev/null
+++ b/client/dom/generated/src/wrapping/_SVGFESpotLightElementWrappingImplementation.dart
@@ -0,0 +1,39 @@
+// 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 _SVGFESpotLightElementWrappingImplementation extends _SVGElementWrappingImplementation implements SVGFESpotLightElement {
+ _SVGFESpotLightElementWrappingImplementation() : super() {}
+
+ static create__SVGFESpotLightElementWrappingImplementation() native {
+ return new _SVGFESpotLightElementWrappingImplementation();
+ }
+
+ SVGAnimatedNumber get limitingConeAngle() { return _get_limitingConeAngle(this); }
+ static SVGAnimatedNumber _get_limitingConeAngle(var _this) native;
+
+ SVGAnimatedNumber get pointsAtX() { return _get_pointsAtX(this); }
+ static SVGAnimatedNumber _get_pointsAtX(var _this) native;
+
+ SVGAnimatedNumber get pointsAtY() { return _get_pointsAtY(this); }
+ static SVGAnimatedNumber _get_pointsAtY(var _this) native;
+
+ SVGAnimatedNumber get pointsAtZ() { return _get_pointsAtZ(this); }
+ static SVGAnimatedNumber _get_pointsAtZ(var _this) native;
+
+ SVGAnimatedNumber get specularExponent() { return _get_specularExponent(this); }
+ static SVGAnimatedNumber _get_specularExponent(var _this) native;
+
+ SVGAnimatedNumber get x() { return _get_x(this); }
+ static SVGAnimatedNumber _get_x(var _this) native;
+
+ SVGAnimatedNumber get y() { return _get_y(this); }
+ static SVGAnimatedNumber _get_y(var _this) native;
+
+ SVGAnimatedNumber get z() { return _get_z(this); }
+ static SVGAnimatedNumber _get_z(var _this) native;
+
+ String get typeName() { return "SVGFESpotLightElement"; }
+}

Powered by Google App Engine
This is Rietveld 408576698