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

Side by Side Diff: client/html/generated/html/dartium/FrameElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (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
(Empty)
1
2 class _FrameElementImpl extends _ElementImpl implements FrameElement {
3 _FrameElementImpl._wrap(ptr) : super._wrap(ptr);
4
5 Document get contentDocument() => _FixHtmlDocumentReference(_wrap(_ptr.content Document));
6
7 Window get contentWindow() => _wrap(_ptr.contentWindow);
8
9 String get frameBorder() => _wrap(_ptr.frameBorder);
10
11 void set frameBorder(String value) { _ptr.frameBorder = _unwrap(value); }
12
13 int get height() => _wrap(_ptr.height);
14
15 String get location() => _wrap(_ptr.location);
16
17 void set location(String value) { _ptr.location = _unwrap(value); }
18
19 String get longDesc() => _wrap(_ptr.longDesc);
20
21 void set longDesc(String value) { _ptr.longDesc = _unwrap(value); }
22
23 String get marginHeight() => _wrap(_ptr.marginHeight);
24
25 void set marginHeight(String value) { _ptr.marginHeight = _unwrap(value); }
26
27 String get marginWidth() => _wrap(_ptr.marginWidth);
28
29 void set marginWidth(String value) { _ptr.marginWidth = _unwrap(value); }
30
31 String get name() => _wrap(_ptr.name);
32
33 void set name(String value) { _ptr.name = _unwrap(value); }
34
35 bool get noResize() => _wrap(_ptr.noResize);
36
37 void set noResize(bool value) { _ptr.noResize = _unwrap(value); }
38
39 String get scrolling() => _wrap(_ptr.scrolling);
40
41 void set scrolling(String value) { _ptr.scrolling = _unwrap(value); }
42
43 String get src() => _wrap(_ptr.src);
44
45 void set src(String value) { _ptr.src = _unwrap(value); }
46
47 int get width() => _wrap(_ptr.width);
48
49 SVGDocument getSVGDocument() {
50 return _wrap(_ptr.getSVGDocument());
51 }
52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698