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

Side by Side Diff: client/dom/generated/src/wrapping/_HTMLFrameElementWrappingImplementation.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 _HTMLFrameElementWrappingImplementation extends _HTMLElementWrappingImplem entation implements HTMLFrameElement { 7 class _HTMLFrameElementWrappingImplementation extends _HTMLElementWrappingImplem entation implements HTMLFrameElement {
8 _HTMLFrameElementWrappingImplementation() : super() {} 8 _HTMLFrameElementWrappingImplementation() : super() {}
9 9
10 static create__HTMLFrameElementWrappingImplementation() native { 10 static create__HTMLFrameElementWrappingImplementation() native {
11 return new _HTMLFrameElementWrappingImplementation(); 11 return new _HTMLFrameElementWrappingImplementation();
12 } 12 }
13 13
14 Document get contentDocument() { return _get__HTMLFrameElement_contentDocument (this); } 14 Document get contentDocument() { return _get_contentDocument(this); }
15 static Document _get__HTMLFrameElement_contentDocument(var _this) native; 15 static Document _get_contentDocument(var _this) native;
16 16
17 DOMWindow get contentWindow() { return _get__HTMLFrameElement_contentWindow(th is); } 17 DOMWindow get contentWindow() { return _get_contentWindow(this); }
18 static DOMWindow _get__HTMLFrameElement_contentWindow(var _this) native; 18 static DOMWindow _get_contentWindow(var _this) native;
19 19
20 String get frameBorder() { return _get__HTMLFrameElement_frameBorder(this); } 20 String get frameBorder() { return _get_frameBorder(this); }
21 static String _get__HTMLFrameElement_frameBorder(var _this) native; 21 static String _get_frameBorder(var _this) native;
22 22
23 void set frameBorder(String value) { _set__HTMLFrameElement_frameBorder(this, value); } 23 void set frameBorder(String value) { _set_frameBorder(this, value); }
24 static void _set__HTMLFrameElement_frameBorder(var _this, String value) native ; 24 static void _set_frameBorder(var _this, String value) native;
25 25
26 int get height() { return _get__HTMLFrameElement_height(this); } 26 int get height() { return _get_height(this); }
27 static int _get__HTMLFrameElement_height(var _this) native; 27 static int _get_height(var _this) native;
28 28
29 String get location() { return _get__HTMLFrameElement_location(this); } 29 String get location() { return _get_location(this); }
30 static String _get__HTMLFrameElement_location(var _this) native; 30 static String _get_location(var _this) native;
31 31
32 void set location(String value) { _set__HTMLFrameElement_location(this, value) ; } 32 void set location(String value) { _set_location(this, value); }
33 static void _set__HTMLFrameElement_location(var _this, String value) native; 33 static void _set_location(var _this, String value) native;
34 34
35 String get longDesc() { return _get__HTMLFrameElement_longDesc(this); } 35 String get longDesc() { return _get_longDesc(this); }
36 static String _get__HTMLFrameElement_longDesc(var _this) native; 36 static String _get_longDesc(var _this) native;
37 37
38 void set longDesc(String value) { _set__HTMLFrameElement_longDesc(this, value) ; } 38 void set longDesc(String value) { _set_longDesc(this, value); }
39 static void _set__HTMLFrameElement_longDesc(var _this, String value) native; 39 static void _set_longDesc(var _this, String value) native;
40 40
41 String get marginHeight() { return _get__HTMLFrameElement_marginHeight(this); } 41 String get marginHeight() { return _get_marginHeight(this); }
42 static String _get__HTMLFrameElement_marginHeight(var _this) native; 42 static String _get_marginHeight(var _this) native;
43 43
44 void set marginHeight(String value) { _set__HTMLFrameElement_marginHeight(this , value); } 44 void set marginHeight(String value) { _set_marginHeight(this, value); }
45 static void _set__HTMLFrameElement_marginHeight(var _this, String value) nativ e; 45 static void _set_marginHeight(var _this, String value) native;
46 46
47 String get marginWidth() { return _get__HTMLFrameElement_marginWidth(this); } 47 String get marginWidth() { return _get_marginWidth(this); }
48 static String _get__HTMLFrameElement_marginWidth(var _this) native; 48 static String _get_marginWidth(var _this) native;
49 49
50 void set marginWidth(String value) { _set__HTMLFrameElement_marginWidth(this, value); } 50 void set marginWidth(String value) { _set_marginWidth(this, value); }
51 static void _set__HTMLFrameElement_marginWidth(var _this, String value) native ; 51 static void _set_marginWidth(var _this, String value) native;
52 52
53 String get name() { return _get__HTMLFrameElement_name(this); } 53 String get name() { return _get_name(this); }
54 static String _get__HTMLFrameElement_name(var _this) native; 54 static String _get_name(var _this) native;
55 55
56 void set name(String value) { _set__HTMLFrameElement_name(this, value); } 56 void set name(String value) { _set_name(this, value); }
57 static void _set__HTMLFrameElement_name(var _this, String value) native; 57 static void _set_name(var _this, String value) native;
58 58
59 bool get noResize() { return _get__HTMLFrameElement_noResize(this); } 59 bool get noResize() { return _get_noResize(this); }
60 static bool _get__HTMLFrameElement_noResize(var _this) native; 60 static bool _get_noResize(var _this) native;
61 61
62 void set noResize(bool value) { _set__HTMLFrameElement_noResize(this, value); } 62 void set noResize(bool value) { _set_noResize(this, value); }
63 static void _set__HTMLFrameElement_noResize(var _this, bool value) native; 63 static void _set_noResize(var _this, bool value) native;
64 64
65 String get scrolling() { return _get__HTMLFrameElement_scrolling(this); } 65 String get scrolling() { return _get_scrolling(this); }
66 static String _get__HTMLFrameElement_scrolling(var _this) native; 66 static String _get_scrolling(var _this) native;
67 67
68 void set scrolling(String value) { _set__HTMLFrameElement_scrolling(this, valu e); } 68 void set scrolling(String value) { _set_scrolling(this, value); }
69 static void _set__HTMLFrameElement_scrolling(var _this, String value) native; 69 static void _set_scrolling(var _this, String value) native;
70 70
71 String get src() { return _get__HTMLFrameElement_src(this); } 71 String get src() { return _get_src(this); }
72 static String _get__HTMLFrameElement_src(var _this) native; 72 static String _get_src(var _this) native;
73 73
74 void set src(String value) { _set__HTMLFrameElement_src(this, value); } 74 void set src(String value) { _set_src(this, value); }
75 static void _set__HTMLFrameElement_src(var _this, String value) native; 75 static void _set_src(var _this, String value) native;
76 76
77 int get width() { return _get__HTMLFrameElement_width(this); } 77 int get width() { return _get_width(this); }
78 static int _get__HTMLFrameElement_width(var _this) native; 78 static int _get_width(var _this) native;
79 79
80 String get typeName() { return "HTMLFrameElement"; } 80 String get typeName() { return "HTMLFrameElement"; }
81 } 81 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698