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

Side by Side Diff: client/html/generated/html/dartium/Location.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 _LocationImpl extends _DOMTypeBase implements Location {
3 _LocationImpl._wrap(ptr) : super._wrap(ptr);
4
5 String get hash() => _wrap(_ptr.hash);
6
7 void set hash(String value) { _ptr.hash = _unwrap(value); }
8
9 String get host() => _wrap(_ptr.host);
10
11 void set host(String value) { _ptr.host = _unwrap(value); }
12
13 String get hostname() => _wrap(_ptr.hostname);
14
15 void set hostname(String value) { _ptr.hostname = _unwrap(value); }
16
17 String get href() => _wrap(_ptr.href);
18
19 void set href(String value) { _ptr.href = _unwrap(value); }
20
21 String get origin() => _wrap(_ptr.origin);
22
23 String get pathname() => _wrap(_ptr.pathname);
24
25 void set pathname(String value) { _ptr.pathname = _unwrap(value); }
26
27 String get port() => _wrap(_ptr.port);
28
29 void set port(String value) { _ptr.port = _unwrap(value); }
30
31 String get protocol() => _wrap(_ptr.protocol);
32
33 void set protocol(String value) { _ptr.protocol = _unwrap(value); }
34
35 String get search() => _wrap(_ptr.search);
36
37 void set search(String value) { _ptr.search = _unwrap(value); }
38
39 void assign(String url) {
40 _ptr.assign(_unwrap(url));
41 return;
42 }
43
44 void reload() {
45 _ptr.reload();
46 return;
47 }
48
49 void replace(String url) {
50 _ptr.replace(_unwrap(url));
51 return;
52 }
53
54 String toString() {
55 return _wrap(_ptr.toString());
56 }
57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698