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

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

Issue 8588010: Regenerate from IDL with LANGUAGE_JAVASCRIPT on (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Map Array to List Created 9 years, 1 month 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 _HTMLDocumentWrappingImplementation extends _DocumentWrappingImplementatio n implements HTMLDocument { 7 class _HTMLDocumentWrappingImplementation extends _DocumentWrappingImplementatio n implements HTMLDocument {
8 _HTMLDocumentWrappingImplementation() : super() {} 8 _HTMLDocumentWrappingImplementation() : super() {}
9 9
10 static create__HTMLDocumentWrappingImplementation() native { 10 static create__HTMLDocumentWrappingImplementation() native {
11 return new _HTMLDocumentWrappingImplementation(); 11 return new _HTMLDocumentWrappingImplementation();
12 } 12 }
13 13
14 Element get activeElement() { return _get__HTMLDocument_activeElement(this); } 14 Element get activeElement() { return _get__HTMLDocument_activeElement(this); }
15 static Element _get__HTMLDocument_activeElement(var _this) native; 15 static Element _get__HTMLDocument_activeElement(var _this) native;
16 16
17 String get alinkColor() { return _get__HTMLDocument_alinkColor(this); } 17 String get alinkColor() { return _get__HTMLDocument_alinkColor(this); }
18 static String _get__HTMLDocument_alinkColor(var _this) native; 18 static String _get__HTMLDocument_alinkColor(var _this) native;
19 19
20 void set alinkColor(String value) { _set__HTMLDocument_alinkColor(this, value) ; } 20 void set alinkColor(String value) { _set__HTMLDocument_alinkColor(this, value) ; }
21 static void _set__HTMLDocument_alinkColor(var _this, String value) native; 21 static void _set__HTMLDocument_alinkColor(var _this, String value) native;
22 22
23 HTMLAllCollection get all() { return _get__HTMLDocument_all(this); }
24 static HTMLAllCollection _get__HTMLDocument_all(var _this) native;
25
26 void set all(HTMLAllCollection value) { _set__HTMLDocument_all(this, value); }
27 static void _set__HTMLDocument_all(var _this, HTMLAllCollection value) native;
28
23 String get bgColor() { return _get__HTMLDocument_bgColor(this); } 29 String get bgColor() { return _get__HTMLDocument_bgColor(this); }
24 static String _get__HTMLDocument_bgColor(var _this) native; 30 static String _get__HTMLDocument_bgColor(var _this) native;
25 31
26 void set bgColor(String value) { _set__HTMLDocument_bgColor(this, value); } 32 void set bgColor(String value) { _set__HTMLDocument_bgColor(this, value); }
27 static void _set__HTMLDocument_bgColor(var _this, String value) native; 33 static void _set__HTMLDocument_bgColor(var _this, String value) native;
28 34
29 String get compatMode() { return _get__HTMLDocument_compatMode(this); } 35 String get compatMode() { return _get__HTMLDocument_compatMode(this); }
30 static String _get__HTMLDocument_compatMode(var _this) native; 36 static String _get__HTMLDocument_compatMode(var _this) native;
31 37
32 String get designMode() { return _get__HTMLDocument_designMode(this); } 38 String get designMode() { return _get__HTMLDocument_designMode(this); }
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 static void _write(receiver, text) native; 122 static void _write(receiver, text) native;
117 123
118 void writeln(String text) { 124 void writeln(String text) {
119 _writeln(this, text); 125 _writeln(this, text);
120 return; 126 return;
121 } 127 }
122 static void _writeln(receiver, text) native; 128 static void _writeln(receiver, text) native;
123 129
124 String get typeName() { return "HTMLDocument"; } 130 String get typeName() { return "HTMLDocument"; }
125 } 131 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698