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

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

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak 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 _HTMLScriptElementWrappingImplementation extends _HTMLElementWrappingImple mentation implements HTMLScriptElement { 7 class _HTMLScriptElementWrappingImplementation extends _HTMLElementWrappingImple mentation implements HTMLScriptElement {
8 _HTMLScriptElementWrappingImplementation() : super() {} 8 _HTMLScriptElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLScriptElementWrappingImplementation() native { 10 static create__HTMLScriptElementWrappingImplementation() native {
11 return new _HTMLScriptElementWrappingImplementation(); 11 return new _HTMLScriptElementWrappingImplementation();
12 } 12 }
13 13
14 bool get async() { return _get__HTMLScriptElement_async(this); } 14 bool get async() { return _get_async(this); }
15 static bool _get__HTMLScriptElement_async(var _this) native; 15 static bool _get_async(var _this) native;
16 16
17 void set async(bool value) { _set__HTMLScriptElement_async(this, value); } 17 void set async(bool value) { _set_async(this, value); }
18 static void _set__HTMLScriptElement_async(var _this, bool value) native; 18 static void _set_async(var _this, bool value) native;
19 19
20 String get charset() { return _get__HTMLScriptElement_charset(this); } 20 String get charset() { return _get_charset(this); }
21 static String _get__HTMLScriptElement_charset(var _this) native; 21 static String _get_charset(var _this) native;
22 22
23 void set charset(String value) { _set__HTMLScriptElement_charset(this, value); } 23 void set charset(String value) { _set_charset(this, value); }
24 static void _set__HTMLScriptElement_charset(var _this, String value) native; 24 static void _set_charset(var _this, String value) native;
25 25
26 bool get defer() { return _get__HTMLScriptElement_defer(this); } 26 bool get defer() { return _get_defer(this); }
27 static bool _get__HTMLScriptElement_defer(var _this) native; 27 static bool _get_defer(var _this) native;
28 28
29 void set defer(bool value) { _set__HTMLScriptElement_defer(this, value); } 29 void set defer(bool value) { _set_defer(this, value); }
30 static void _set__HTMLScriptElement_defer(var _this, bool value) native; 30 static void _set_defer(var _this, bool value) native;
31 31
32 String get event() { return _get__HTMLScriptElement_event(this); } 32 String get event() { return _get_event(this); }
33 static String _get__HTMLScriptElement_event(var _this) native; 33 static String _get_event(var _this) native;
34 34
35 void set event(String value) { _set__HTMLScriptElement_event(this, value); } 35 void set event(String value) { _set_event(this, value); }
36 static void _set__HTMLScriptElement_event(var _this, String value) native; 36 static void _set_event(var _this, String value) native;
37 37
38 String get htmlFor() { return _get__HTMLScriptElement_htmlFor(this); } 38 String get htmlFor() { return _get_htmlFor(this); }
39 static String _get__HTMLScriptElement_htmlFor(var _this) native; 39 static String _get_htmlFor(var _this) native;
40 40
41 void set htmlFor(String value) { _set__HTMLScriptElement_htmlFor(this, value); } 41 void set htmlFor(String value) { _set_htmlFor(this, value); }
42 static void _set__HTMLScriptElement_htmlFor(var _this, String value) native; 42 static void _set_htmlFor(var _this, String value) native;
43 43
44 String get src() { return _get__HTMLScriptElement_src(this); } 44 String get src() { return _get_src(this); }
45 static String _get__HTMLScriptElement_src(var _this) native; 45 static String _get_src(var _this) native;
46 46
47 void set src(String value) { _set__HTMLScriptElement_src(this, value); } 47 void set src(String value) { _set_src(this, value); }
48 static void _set__HTMLScriptElement_src(var _this, String value) native; 48 static void _set_src(var _this, String value) native;
49 49
50 String get text() { return _get__HTMLScriptElement_text(this); } 50 String get text() { return _get_text(this); }
51 static String _get__HTMLScriptElement_text(var _this) native; 51 static String _get_text(var _this) native;
52 52
53 void set text(String value) { _set__HTMLScriptElement_text(this, value); } 53 void set text(String value) { _set_text(this, value); }
54 static void _set__HTMLScriptElement_text(var _this, String value) native; 54 static void _set_text(var _this, String value) native;
55 55
56 String get type() { return _get__HTMLScriptElement_type(this); } 56 String get type() { return _get_type(this); }
57 static String _get__HTMLScriptElement_type(var _this) native; 57 static String _get_type(var _this) native;
58 58
59 void set type(String value) { _set__HTMLScriptElement_type(this, value); } 59 void set type(String value) { _set_type(this, value); }
60 static void _set__HTMLScriptElement_type(var _this, String value) native; 60 static void _set_type(var _this, String value) native;
61 61
62 String get typeName() { return "HTMLScriptElement"; } 62 String get typeName() { return "HTMLScriptElement"; }
63 } 63 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698