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

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

Issue 9103001: Revert "Refresh dart:dom" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 _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 {
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 HTMLCollection get embeds() { return _get_embeds(this); } 50 HTMLCollection get embeds() { return _get_embeds(this); }
51 static HTMLCollection _get_embeds(var _this) native; 51 static HTMLCollection _get_embeds(var _this) native;
52 52
53 String get fgColor() { return _get_fgColor(this); } 53 String get fgColor() { return _get_fgColor(this); }
54 static String _get_fgColor(var _this) native; 54 static String _get_fgColor(var _this) native;
55 55
56 void set fgColor(String value) { _set_fgColor(this, value); } 56 void set fgColor(String value) { _set_fgColor(this, value); }
57 static void _set_fgColor(var _this, String value) native; 57 static void _set_fgColor(var _this, String value) native;
58 58
59 int get height() { return _get_height(this); }
60 static int _get_height(var _this) native;
61
59 String get linkColor() { return _get_linkColor(this); } 62 String get linkColor() { return _get_linkColor(this); }
60 static String _get_linkColor(var _this) native; 63 static String _get_linkColor(var _this) native;
61 64
62 void set linkColor(String value) { _set_linkColor(this, value); } 65 void set linkColor(String value) { _set_linkColor(this, value); }
63 static void _set_linkColor(var _this, String value) native; 66 static void _set_linkColor(var _this, String value) native;
64 67
65 HTMLCollection get plugins() { return _get_plugins(this); } 68 HTMLCollection get plugins() { return _get_plugins(this); }
66 static HTMLCollection _get_plugins(var _this) native; 69 static HTMLCollection _get_plugins(var _this) native;
67 70
68 HTMLCollection get scripts() { return _get_scripts(this); } 71 HTMLCollection get scripts() { return _get_scripts(this); }
69 static HTMLCollection _get_scripts(var _this) native; 72 static HTMLCollection _get_scripts(var _this) native;
70 73
71 String get vlinkColor() { return _get_vlinkColor(this); } 74 String get vlinkColor() { return _get_vlinkColor(this); }
72 static String _get_vlinkColor(var _this) native; 75 static String _get_vlinkColor(var _this) native;
73 76
74 void set vlinkColor(String value) { _set_vlinkColor(this, value); } 77 void set vlinkColor(String value) { _set_vlinkColor(this, value); }
75 static void _set_vlinkColor(var _this, String value) native; 78 static void _set_vlinkColor(var _this, String value) native;
76 79
80 int get width() { return _get_width(this); }
81 static int _get_width(var _this) native;
82
77 void captureEvents() { 83 void captureEvents() {
78 _captureEvents(this); 84 _captureEvents(this);
79 return; 85 return;
80 } 86 }
81 static void _captureEvents(receiver) native; 87 static void _captureEvents(receiver) native;
82 88
83 void clear() { 89 void clear() {
84 _clear(this); 90 _clear(this);
85 return; 91 return;
86 } 92 }
(...skipping 29 matching lines...) Expand all
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