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

Side by Side Diff: client/html/generated/src/wrapping/_AreaElementWrappingImplementation.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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 class AreaElementWrappingImplementation extends ElementWrappingImplementation im plements AreaElement {
8 AreaElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9
10 String get accessKey() { return _ptr.accessKey; }
11
12 void set accessKey(String value) { _ptr.accessKey = value; }
13
14 String get alt() { return _ptr.alt; }
15
16 void set alt(String value) { _ptr.alt = value; }
17
18 String get coords() { return _ptr.coords; }
19
20 void set coords(String value) { _ptr.coords = value; }
21
22 String get hash() { return _ptr.hash; }
23
24 String get host() { return _ptr.host; }
25
26 String get hostname() { return _ptr.hostname; }
27
28 String get href() { return _ptr.href; }
29
30 void set href(String value) { _ptr.href = value; }
31
32 bool get noHref() { return _ptr.noHref; }
33
34 void set noHref(bool value) { _ptr.noHref = value; }
35
36 String get pathname() { return _ptr.pathname; }
37
38 String get ping() { return _ptr.ping; }
39
40 void set ping(String value) { _ptr.ping = value; }
41
42 String get port() { return _ptr.port; }
43
44 String get protocol() { return _ptr.protocol; }
45
46 String get search() { return _ptr.search; }
47
48 String get shape() { return _ptr.shape; }
49
50 void set shape(String value) { _ptr.shape = value; }
51
52 String get target() { return _ptr.target; }
53
54 void set target(String value) { _ptr.target = value; }
55 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698