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

Side by Side Diff: client/html/generated/html/dartium/SVGAngle.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, 9 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 class _SVGAngleImpl extends _DOMTypeBase implements SVGAngle {
3 _SVGAngleImpl._wrap(ptr) : super._wrap(ptr);
4
5 int get unitType() => _wrap(_ptr.unitType);
6
7 num get value() => _wrap(_ptr.value);
8
9 void set value(num value) { _ptr.value = _unwrap(value); }
10
11 String get valueAsString() => _wrap(_ptr.valueAsString);
12
13 void set valueAsString(String value) { _ptr.valueAsString = _unwrap(value); }
14
15 num get valueInSpecifiedUnits() => _wrap(_ptr.valueInSpecifiedUnits);
16
17 void set valueInSpecifiedUnits(num value) { _ptr.valueInSpecifiedUnits = _unwr ap(value); }
18
19 void convertToSpecifiedUnits(int unitType) {
20 _ptr.convertToSpecifiedUnits(_unwrap(unitType));
21 return;
22 }
23
24 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) {
25 _ptr.newValueSpecifiedUnits(_unwrap(unitType), _unwrap(valueInSpecifiedUnits ));
26 return;
27 }
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698