Chromium Code Reviews

Unified Diff: client/html/generated/html/dartium/SVGPathSegLinetoVerticalAbs.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: client/html/generated/html/dartium/SVGPathSegLinetoVerticalAbs.dart
diff --git a/client/html/generated/html/dartium/SVGPathSegLinetoVerticalAbs.dart b/client/html/generated/html/dartium/SVGPathSegLinetoVerticalAbs.dart
new file mode 100644
index 0000000000000000000000000000000000000000..5acfcabfe2642420ad5f41469fa79f9b7605482b
--- /dev/null
+++ b/client/html/generated/html/dartium/SVGPathSegLinetoVerticalAbs.dart
@@ -0,0 +1,8 @@
+
+class _SVGPathSegLinetoVerticalAbsImpl extends _SVGPathSegImpl implements SVGPathSegLinetoVerticalAbs {
+ _SVGPathSegLinetoVerticalAbsImpl._wrap(ptr) : super._wrap(ptr);
+
+ num get y() => _wrap(_ptr.y);
+
+ void set y(num value) { _ptr.y = _unwrap(value); }
+}

Powered by Google App Engine