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

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

Issue 9466036: Fix parsing of DOMString[] in IDL (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
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 _HTMLElementWrappingImplementation extends _ElementWrappingImplementation implements HTMLElement { 7 class _HTMLElementWrappingImplementation extends _ElementWrappingImplementation implements HTMLElement {
8 _HTMLElementWrappingImplementation() : super() {} 8 _HTMLElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLElementWrappingImplementation() native { 10 static create__HTMLElementWrappingImplementation() native {
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 103
104 void set tabIndex(int value) { _set_tabIndex(this, value); } 104 void set tabIndex(int value) { _set_tabIndex(this, value); }
105 static void _set_tabIndex(var _this, int value) native; 105 static void _set_tabIndex(var _this, int value) native;
106 106
107 String get title() { return _get_title(this); } 107 String get title() { return _get_title(this); }
108 static String _get_title(var _this) native; 108 static String _get_title(var _this) native;
109 109
110 void set title(String value) { _set_title(this, value); } 110 void set title(String value) { _set_title(this, value); }
111 static void _set_title(var _this, String value) native; 111 static void _set_title(var _this, String value) native;
112 112
113 bool get translate() { return _get_translate(this); }
114 static bool _get_translate(var _this) native;
115
116 void set translate(bool value) { _set_translate(this, value); }
117 static void _set_translate(var _this, bool value) native;
118
113 String get webkitdropzone() { return _get_webkitdropzone(this); } 119 String get webkitdropzone() { return _get_webkitdropzone(this); }
114 static String _get_webkitdropzone(var _this) native; 120 static String _get_webkitdropzone(var _this) native;
115 121
116 void set webkitdropzone(String value) { _set_webkitdropzone(this, value); } 122 void set webkitdropzone(String value) { _set_webkitdropzone(this, value); }
117 static void _set_webkitdropzone(var _this, String value) native; 123 static void _set_webkitdropzone(var _this, String value) native;
118 124
119 void click() { 125 void click() {
120 _click(this); 126 _click(this);
121 return; 127 return;
122 } 128 }
(...skipping 11 matching lines...) Expand all
134 static void _insertAdjacentHTML(receiver, where, html) native; 140 static void _insertAdjacentHTML(receiver, where, html) native;
135 141
136 void insertAdjacentText(String where, String text) { 142 void insertAdjacentText(String where, String text) {
137 _insertAdjacentText(this, where, text); 143 _insertAdjacentText(this, where, text);
138 return; 144 return;
139 } 145 }
140 static void _insertAdjacentText(receiver, where, text) native; 146 static void _insertAdjacentText(receiver, where, text) native;
141 147
142 String get typeName() { return "HTMLElement"; } 148 String get typeName() { return "HTMLElement"; }
143 } 149 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698