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

Unified Diff: client/dom/generated/src/wrapping/_SVGViewElementWrappingImplementation.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/_SVGViewElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_SVGViewElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_SVGViewElementWrappingImplementation.dart
new file mode 100644
index 0000000000000000000000000000000000000000..43a19d29ffdf7f759ef58502f5cae1e8619ef3ce
--- /dev/null
+++ b/client/dom/generated/src/wrapping/_SVGViewElementWrappingImplementation.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 _SVGViewElementWrappingImplementation extends _SVGElementWrappingImplementation implements SVGViewElement {
+ _SVGViewElementWrappingImplementation() : super() {}
+
+ static create__SVGViewElementWrappingImplementation() native {
+ return new _SVGViewElementWrappingImplementation();
+ }
+
+ SVGStringList get viewTarget() { return _get_viewTarget(this); }
+ static SVGStringList _get_viewTarget(var _this) native;
+
+ // From SVGExternalResourcesRequired
+
+ SVGAnimatedBoolean get externalResourcesRequired() { return _get_externalResourcesRequired(this); }
+ static SVGAnimatedBoolean _get_externalResourcesRequired(var _this) native;
+
+ // From SVGFitToViewBox
+
+ SVGAnimatedPreserveAspectRatio get preserveAspectRatio() { return _get_preserveAspectRatio(this); }
+ static SVGAnimatedPreserveAspectRatio _get_preserveAspectRatio(var _this) native;
+
+ SVGAnimatedRect get viewBox() { return _get_viewBox(this); }
+ static SVGAnimatedRect _get_viewBox(var _this) native;
+
+ // From SVGZoomAndPan
+
+ int get zoomAndPan() { return _get_zoomAndPan(this); }
+ static int _get_zoomAndPan(var _this) native;
+
+ void set zoomAndPan(int value) { _set_zoomAndPan(this, value); }
+ static void _set_zoomAndPan(var _this, int value) native;
+
+ String get typeName() { return "SVGViewElement"; }
+}

Powered by Google App Engine
This is Rietveld 408576698