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

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

Issue 8637013: Remove support for attribute event listeners. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 _DocumentWrappingImplementation extends _NodeWrappingImplementation implem ents Document { 7 class _DocumentWrappingImplementation extends _NodeWrappingImplementation implem ents Document {
8 _DocumentWrappingImplementation() : super() {} 8 _DocumentWrappingImplementation() : super() {}
9 9
10 static create__DocumentWrappingImplementation() native { 10 static create__DocumentWrappingImplementation() native {
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 88
89 HTMLCollection get links() { return _get_links(this); } 89 HTMLCollection get links() { return _get_links(this); }
90 static HTMLCollection _get_links(var _this) native; 90 static HTMLCollection _get_links(var _this) native;
91 91
92 Location get location() { return _get_location(this); } 92 Location get location() { return _get_location(this); }
93 static Location _get_location(var _this) native; 93 static Location _get_location(var _this) native;
94 94
95 void set location(Location value) { _set_location(this, value); } 95 void set location(Location value) { _set_location(this, value); }
96 static void _set_location(var _this, Location value) native; 96 static void _set_location(var _this, Location value) native;
97 97
98 EventListener get onabort() { return _get_onabort(this); }
99 static EventListener _get_onabort(var _this) native;
100
101 void set onabort(EventListener value) { _set_onabort(this, value); }
102 static void _set_onabort(var _this, EventListener value) native;
103
104 EventListener get onbeforecopy() { return _get_onbeforecopy(this); }
105 static EventListener _get_onbeforecopy(var _this) native;
106
107 void set onbeforecopy(EventListener value) { _set_onbeforecopy(this, value); }
108 static void _set_onbeforecopy(var _this, EventListener value) native;
109
110 EventListener get onbeforecut() { return _get_onbeforecut(this); }
111 static EventListener _get_onbeforecut(var _this) native;
112
113 void set onbeforecut(EventListener value) { _set_onbeforecut(this, value); }
114 static void _set_onbeforecut(var _this, EventListener value) native;
115
116 EventListener get onbeforepaste() { return _get_onbeforepaste(this); }
117 static EventListener _get_onbeforepaste(var _this) native;
118
119 void set onbeforepaste(EventListener value) { _set_onbeforepaste(this, value); }
120 static void _set_onbeforepaste(var _this, EventListener value) native;
121
122 EventListener get onblur() { return _get_onblur(this); }
123 static EventListener _get_onblur(var _this) native;
124
125 void set onblur(EventListener value) { _set_onblur(this, value); }
126 static void _set_onblur(var _this, EventListener value) native;
127
128 EventListener get onchange() { return _get_onchange(this); }
129 static EventListener _get_onchange(var _this) native;
130
131 void set onchange(EventListener value) { _set_onchange(this, value); }
132 static void _set_onchange(var _this, EventListener value) native;
133
134 EventListener get onclick() { return _get_onclick(this); }
135 static EventListener _get_onclick(var _this) native;
136
137 void set onclick(EventListener value) { _set_onclick(this, value); }
138 static void _set_onclick(var _this, EventListener value) native;
139
140 EventListener get oncontextmenu() { return _get_oncontextmenu(this); }
141 static EventListener _get_oncontextmenu(var _this) native;
142
143 void set oncontextmenu(EventListener value) { _set_oncontextmenu(this, value); }
144 static void _set_oncontextmenu(var _this, EventListener value) native;
145
146 EventListener get oncopy() { return _get_oncopy(this); }
147 static EventListener _get_oncopy(var _this) native;
148
149 void set oncopy(EventListener value) { _set_oncopy(this, value); }
150 static void _set_oncopy(var _this, EventListener value) native;
151
152 EventListener get oncut() { return _get_oncut(this); }
153 static EventListener _get_oncut(var _this) native;
154
155 void set oncut(EventListener value) { _set_oncut(this, value); }
156 static void _set_oncut(var _this, EventListener value) native;
157
158 EventListener get ondblclick() { return _get_ondblclick(this); }
159 static EventListener _get_ondblclick(var _this) native;
160
161 void set ondblclick(EventListener value) { _set_ondblclick(this, value); }
162 static void _set_ondblclick(var _this, EventListener value) native;
163
164 EventListener get ondrag() { return _get_ondrag(this); }
165 static EventListener _get_ondrag(var _this) native;
166
167 void set ondrag(EventListener value) { _set_ondrag(this, value); }
168 static void _set_ondrag(var _this, EventListener value) native;
169
170 EventListener get ondragend() { return _get_ondragend(this); }
171 static EventListener _get_ondragend(var _this) native;
172
173 void set ondragend(EventListener value) { _set_ondragend(this, value); }
174 static void _set_ondragend(var _this, EventListener value) native;
175
176 EventListener get ondragenter() { return _get_ondragenter(this); }
177 static EventListener _get_ondragenter(var _this) native;
178
179 void set ondragenter(EventListener value) { _set_ondragenter(this, value); }
180 static void _set_ondragenter(var _this, EventListener value) native;
181
182 EventListener get ondragleave() { return _get_ondragleave(this); }
183 static EventListener _get_ondragleave(var _this) native;
184
185 void set ondragleave(EventListener value) { _set_ondragleave(this, value); }
186 static void _set_ondragleave(var _this, EventListener value) native;
187
188 EventListener get ondragover() { return _get_ondragover(this); }
189 static EventListener _get_ondragover(var _this) native;
190
191 void set ondragover(EventListener value) { _set_ondragover(this, value); }
192 static void _set_ondragover(var _this, EventListener value) native;
193
194 EventListener get ondragstart() { return _get_ondragstart(this); }
195 static EventListener _get_ondragstart(var _this) native;
196
197 void set ondragstart(EventListener value) { _set_ondragstart(this, value); }
198 static void _set_ondragstart(var _this, EventListener value) native;
199
200 EventListener get ondrop() { return _get_ondrop(this); }
201 static EventListener _get_ondrop(var _this) native;
202
203 void set ondrop(EventListener value) { _set_ondrop(this, value); }
204 static void _set_ondrop(var _this, EventListener value) native;
205
206 EventListener get onerror() { return _get_onerror(this); }
207 static EventListener _get_onerror(var _this) native;
208
209 void set onerror(EventListener value) { _set_onerror(this, value); }
210 static void _set_onerror(var _this, EventListener value) native;
211
212 EventListener get onfocus() { return _get_onfocus(this); }
213 static EventListener _get_onfocus(var _this) native;
214
215 void set onfocus(EventListener value) { _set_onfocus(this, value); }
216 static void _set_onfocus(var _this, EventListener value) native;
217
218 EventListener get oninput() { return _get_oninput(this); }
219 static EventListener _get_oninput(var _this) native;
220
221 void set oninput(EventListener value) { _set_oninput(this, value); }
222 static void _set_oninput(var _this, EventListener value) native;
223
224 EventListener get oninvalid() { return _get_oninvalid(this); }
225 static EventListener _get_oninvalid(var _this) native;
226
227 void set oninvalid(EventListener value) { _set_oninvalid(this, value); }
228 static void _set_oninvalid(var _this, EventListener value) native;
229
230 EventListener get onkeydown() { return _get_onkeydown(this); }
231 static EventListener _get_onkeydown(var _this) native;
232
233 void set onkeydown(EventListener value) { _set_onkeydown(this, value); }
234 static void _set_onkeydown(var _this, EventListener value) native;
235
236 EventListener get onkeypress() { return _get_onkeypress(this); }
237 static EventListener _get_onkeypress(var _this) native;
238
239 void set onkeypress(EventListener value) { _set_onkeypress(this, value); }
240 static void _set_onkeypress(var _this, EventListener value) native;
241
242 EventListener get onkeyup() { return _get_onkeyup(this); }
243 static EventListener _get_onkeyup(var _this) native;
244
245 void set onkeyup(EventListener value) { _set_onkeyup(this, value); }
246 static void _set_onkeyup(var _this, EventListener value) native;
247
248 EventListener get onload() { return _get_onload(this); }
249 static EventListener _get_onload(var _this) native;
250
251 void set onload(EventListener value) { _set_onload(this, value); }
252 static void _set_onload(var _this, EventListener value) native;
253
254 EventListener get onmousedown() { return _get_onmousedown(this); }
255 static EventListener _get_onmousedown(var _this) native;
256
257 void set onmousedown(EventListener value) { _set_onmousedown(this, value); }
258 static void _set_onmousedown(var _this, EventListener value) native;
259
260 EventListener get onmousemove() { return _get_onmousemove(this); }
261 static EventListener _get_onmousemove(var _this) native;
262
263 void set onmousemove(EventListener value) { _set_onmousemove(this, value); }
264 static void _set_onmousemove(var _this, EventListener value) native;
265
266 EventListener get onmouseout() { return _get_onmouseout(this); }
267 static EventListener _get_onmouseout(var _this) native;
268
269 void set onmouseout(EventListener value) { _set_onmouseout(this, value); }
270 static void _set_onmouseout(var _this, EventListener value) native;
271
272 EventListener get onmouseover() { return _get_onmouseover(this); }
273 static EventListener _get_onmouseover(var _this) native;
274
275 void set onmouseover(EventListener value) { _set_onmouseover(this, value); }
276 static void _set_onmouseover(var _this, EventListener value) native;
277
278 EventListener get onmouseup() { return _get_onmouseup(this); }
279 static EventListener _get_onmouseup(var _this) native;
280
281 void set onmouseup(EventListener value) { _set_onmouseup(this, value); }
282 static void _set_onmouseup(var _this, EventListener value) native;
283
284 EventListener get onmousewheel() { return _get_onmousewheel(this); }
285 static EventListener _get_onmousewheel(var _this) native;
286
287 void set onmousewheel(EventListener value) { _set_onmousewheel(this, value); }
288 static void _set_onmousewheel(var _this, EventListener value) native;
289
290 EventListener get onpaste() { return _get_onpaste(this); }
291 static EventListener _get_onpaste(var _this) native;
292
293 void set onpaste(EventListener value) { _set_onpaste(this, value); }
294 static void _set_onpaste(var _this, EventListener value) native;
295
296 EventListener get onreadystatechange() { return _get_onreadystatechange(this); }
297 static EventListener _get_onreadystatechange(var _this) native;
298
299 void set onreadystatechange(EventListener value) { _set_onreadystatechange(thi s, value); }
300 static void _set_onreadystatechange(var _this, EventListener value) native;
301
302 EventListener get onreset() { return _get_onreset(this); }
303 static EventListener _get_onreset(var _this) native;
304
305 void set onreset(EventListener value) { _set_onreset(this, value); }
306 static void _set_onreset(var _this, EventListener value) native;
307
308 EventListener get onscroll() { return _get_onscroll(this); }
309 static EventListener _get_onscroll(var _this) native;
310
311 void set onscroll(EventListener value) { _set_onscroll(this, value); }
312 static void _set_onscroll(var _this, EventListener value) native;
313
314 EventListener get onsearch() { return _get_onsearch(this); }
315 static EventListener _get_onsearch(var _this) native;
316
317 void set onsearch(EventListener value) { _set_onsearch(this, value); }
318 static void _set_onsearch(var _this, EventListener value) native;
319
320 EventListener get onselect() { return _get_onselect(this); }
321 static EventListener _get_onselect(var _this) native;
322
323 void set onselect(EventListener value) { _set_onselect(this, value); }
324 static void _set_onselect(var _this, EventListener value) native;
325
326 EventListener get onselectionchange() { return _get_onselectionchange(this); }
327 static EventListener _get_onselectionchange(var _this) native;
328
329 void set onselectionchange(EventListener value) { _set_onselectionchange(this, value); }
330 static void _set_onselectionchange(var _this, EventListener value) native;
331
332 EventListener get onselectstart() { return _get_onselectstart(this); }
333 static EventListener _get_onselectstart(var _this) native;
334
335 void set onselectstart(EventListener value) { _set_onselectstart(this, value); }
336 static void _set_onselectstart(var _this, EventListener value) native;
337
338 EventListener get onsubmit() { return _get_onsubmit(this); }
339 static EventListener _get_onsubmit(var _this) native;
340
341 void set onsubmit(EventListener value) { _set_onsubmit(this, value); }
342 static void _set_onsubmit(var _this, EventListener value) native;
343
344 EventListener get ontouchcancel() { return _get_ontouchcancel(this); }
345 static EventListener _get_ontouchcancel(var _this) native;
346
347 void set ontouchcancel(EventListener value) { _set_ontouchcancel(this, value); }
348 static void _set_ontouchcancel(var _this, EventListener value) native;
349
350 EventListener get ontouchend() { return _get_ontouchend(this); }
351 static EventListener _get_ontouchend(var _this) native;
352
353 void set ontouchend(EventListener value) { _set_ontouchend(this, value); }
354 static void _set_ontouchend(var _this, EventListener value) native;
355
356 EventListener get ontouchmove() { return _get_ontouchmove(this); }
357 static EventListener _get_ontouchmove(var _this) native;
358
359 void set ontouchmove(EventListener value) { _set_ontouchmove(this, value); }
360 static void _set_ontouchmove(var _this, EventListener value) native;
361
362 EventListener get ontouchstart() { return _get_ontouchstart(this); }
363 static EventListener _get_ontouchstart(var _this) native;
364
365 void set ontouchstart(EventListener value) { _set_ontouchstart(this, value); }
366 static void _set_ontouchstart(var _this, EventListener value) native;
367
368 EventListener get onwebkitfullscreenchange() { return _get_onwebkitfullscreenc hange(this); }
369 static EventListener _get_onwebkitfullscreenchange(var _this) native;
370
371 void set onwebkitfullscreenchange(EventListener value) { _set_onwebkitfullscre enchange(this, value); }
372 static void _set_onwebkitfullscreenchange(var _this, EventListener value) nati ve;
373
374 String get preferredStylesheetSet() { return _get_preferredStylesheetSet(this) ; } 98 String get preferredStylesheetSet() { return _get_preferredStylesheetSet(this) ; }
375 static String _get_preferredStylesheetSet(var _this) native; 99 static String _get_preferredStylesheetSet(var _this) native;
376 100
377 String get readyState() { return _get_readyState(this); } 101 String get readyState() { return _get_readyState(this); }
378 static String _get_readyState(var _this) native; 102 static String _get_readyState(var _this) native;
379 103
380 String get referrer() { return _get_referrer(this); } 104 String get referrer() { return _get_referrer(this); }
381 static String _get_referrer(var _this) native; 105 static String _get_referrer(var _this) native;
382 106
383 String get selectedStylesheetSet() { return _get_selectedStylesheetSet(this); } 107 String get selectedStylesheetSet() { return _get_selectedStylesheetSet(this); }
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 } 320 }
597 static Element _querySelector(receiver, selectors) native; 321 static Element _querySelector(receiver, selectors) native;
598 322
599 NodeList querySelectorAll(String selectors) { 323 NodeList querySelectorAll(String selectors) {
600 return _querySelectorAll(this, selectors); 324 return _querySelectorAll(this, selectors);
601 } 325 }
602 static NodeList _querySelectorAll(receiver, selectors) native; 326 static NodeList _querySelectorAll(receiver, selectors) native;
603 327
604 String get typeName() { return "Document"; } 328 String get typeName() { return "Document"; }
605 } 329 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698