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/AreaElement.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 _AreaElementImpl extends _ElementImpl implements AreaElement {
3 _AreaElementImpl._wrap(ptr) : super._wrap(ptr);
4
5 String get alt() => _wrap(_ptr.alt);
6
7 void set alt(String value) { _ptr.alt = _unwrap(value); }
8
9 String get coords() => _wrap(_ptr.coords);
10
11 void set coords(String value) { _ptr.coords = _unwrap(value); }
12
13 String get hash() => _wrap(_ptr.hash);
14
15 String get host() => _wrap(_ptr.host);
16
17 String get hostname() => _wrap(_ptr.hostname);
18
19 String get href() => _wrap(_ptr.href);
20
21 void set href(String value) { _ptr.href = _unwrap(value); }
22
23 bool get noHref() => _wrap(_ptr.noHref);
24
25 void set noHref(bool value) { _ptr.noHref = _unwrap(value); }
26
27 String get pathname() => _wrap(_ptr.pathname);
28
29 String get ping() => _wrap(_ptr.ping);
30
31 void set ping(String value) { _ptr.ping = _unwrap(value); }
32
33 String get port() => _wrap(_ptr.port);
34
35 String get protocol() => _wrap(_ptr.protocol);
36
37 String get search() => _wrap(_ptr.search);
38
39 String get shape() => _wrap(_ptr.shape);
40
41 void set shape(String value) { _ptr.shape = _unwrap(value); }
42
43 String get target() => _wrap(_ptr.target);
44
45 void set target(String value) { _ptr.target = _unwrap(value); }
46 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698