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

Side by Side Diff: client/html/generated/html/dartium/WebGLContextAttributes.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 _WebGLContextAttributesImpl extends _DOMTypeBase implements WebGLContextAt tributes {
3 _WebGLContextAttributesImpl._wrap(ptr) : super._wrap(ptr);
4
5 bool get alpha() => _wrap(_ptr.alpha);
6
7 void set alpha(bool value) { _ptr.alpha = _unwrap(value); }
8
9 bool get antialias() => _wrap(_ptr.antialias);
10
11 void set antialias(bool value) { _ptr.antialias = _unwrap(value); }
12
13 bool get depth() => _wrap(_ptr.depth);
14
15 void set depth(bool value) { _ptr.depth = _unwrap(value); }
16
17 bool get premultipliedAlpha() => _wrap(_ptr.premultipliedAlpha);
18
19 void set premultipliedAlpha(bool value) { _ptr.premultipliedAlpha = _unwrap(va lue); }
20
21 bool get preserveDrawingBuffer() => _wrap(_ptr.preserveDrawingBuffer);
22
23 void set preserveDrawingBuffer(bool value) { _ptr.preserveDrawingBuffer = _unw rap(value); }
24
25 bool get stencil() => _wrap(_ptr.stencil);
26
27 void set stencil(bool value) { _ptr.stencil = _unwrap(value); }
28 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698