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

Side by Side Diff: client/html/generated/html/dartium/SVGPathSegList.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 _SVGPathSegListImpl extends _DOMTypeBase implements SVGPathSegList {
3 _SVGPathSegListImpl._wrap(ptr) : super._wrap(ptr);
4
5 int get numberOfItems() => _wrap(_ptr.numberOfItems);
6
7 SVGPathSeg appendItem(SVGPathSeg newItem) {
8 return _wrap(_ptr.appendItem(_unwrap(newItem)));
9 }
10
11 void clear() {
12 _ptr.clear();
13 return;
14 }
15
16 SVGPathSeg getItem(int index) {
17 return _wrap(_ptr.getItem(_unwrap(index)));
18 }
19
20 SVGPathSeg initialize(SVGPathSeg newItem) {
21 return _wrap(_ptr.initialize(_unwrap(newItem)));
22 }
23
24 SVGPathSeg insertItemBefore(SVGPathSeg newItem, int index) {
25 return _wrap(_ptr.insertItemBefore(_unwrap(newItem), _unwrap(index)));
26 }
27
28 SVGPathSeg removeItem(int index) {
29 return _wrap(_ptr.removeItem(_unwrap(index)));
30 }
31
32 SVGPathSeg replaceItem(SVGPathSeg newItem, int index) {
33 return _wrap(_ptr.replaceItem(_unwrap(newItem), _unwrap(index)));
34 }
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698