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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLAreaElementWrappingImplementation.dart

Issue 9106002: Revert "Revert "Refresh dart:dom"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix dartc issues Created 8 years, 11 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 class _HTMLAreaElementWrappingImplementation extends _HTMLElementWrappingImpleme ntation implements HTMLAreaElement { 7 class _HTMLAreaElementWrappingImplementation extends _HTMLElementWrappingImpleme ntation implements HTMLAreaElement {
8 _HTMLAreaElementWrappingImplementation() : super() {} 8 _HTMLAreaElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLAreaElementWrappingImplementation() native { 10 static create__HTMLAreaElementWrappingImplementation() native {
11 return new _HTMLAreaElementWrappingImplementation(); 11 return new _HTMLAreaElementWrappingImplementation();
12 } 12 }
13 13
14 String get accessKey() { return _get_accessKey(this); }
15 static String _get_accessKey(var _this) native;
16
17 void set accessKey(String value) { _set_accessKey(this, value); }
18 static void _set_accessKey(var _this, String value) native;
19
20 String get alt() { return _get_alt(this); } 14 String get alt() { return _get_alt(this); }
21 static String _get_alt(var _this) native; 15 static String _get_alt(var _this) native;
22 16
23 void set alt(String value) { _set_alt(this, value); } 17 void set alt(String value) { _set_alt(this, value); }
24 static void _set_alt(var _this, String value) native; 18 static void _set_alt(var _this, String value) native;
25 19
26 String get coords() { return _get_coords(this); } 20 String get coords() { return _get_coords(this); }
27 static String _get_coords(var _this) native; 21 static String _get_coords(var _this) native;
28 22
29 void set coords(String value) { _set_coords(this, value); } 23 void set coords(String value) { _set_coords(this, value); }
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 static void _set_shape(var _this, String value) native; 69 static void _set_shape(var _this, String value) native;
76 70
77 String get target() { return _get_target(this); } 71 String get target() { return _get_target(this); }
78 static String _get_target(var _this) native; 72 static String _get_target(var _this) native;
79 73
80 void set target(String value) { _set_target(this, value); } 74 void set target(String value) { _set_target(this, value); }
81 static void _set_target(var _this, String value) native; 75 static void _set_target(var _this, String value) native;
82 76
83 String get typeName() { return "HTMLAreaElement"; } 77 String get typeName() { return "HTMLAreaElement"; }
84 } 78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698