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

Side by Side Diff: client/dom/generated/src/interface/HTMLAreaElement.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 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
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 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 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface HTMLAreaElement extends HTMLElement { 7 interface HTMLAreaElement extends HTMLElement {
8 8
9 String get alt(); 9 String alt;
10 10
11 void set alt(String value); 11 String coords;
12 12
13 String get coords(); 13 final String hash;
14 14
15 void set coords(String value); 15 final String host;
16 16
17 String get hash(); 17 final String hostname;
18 18
19 String get host(); 19 String href;
20 20
21 String get hostname(); 21 bool noHref;
22 22
23 String get href(); 23 final String pathname;
24 24
25 void set href(String value); 25 String ping;
26 26
27 bool get noHref(); 27 final String port;
28 28
29 void set noHref(bool value); 29 final String protocol;
30 30
31 String get pathname(); 31 final String search;
32 32
33 String get ping(); 33 String shape;
34 34
35 void set ping(String value); 35 String target;
36
37 String get port();
38
39 String get protocol();
40
41 String get search();
42
43 String get shape();
44
45 void set shape(String value);
46
47 String get target();
48
49 void set target(String value);
50 } 36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698