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

Unified 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, 10 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 side-by-side diff with in-line comments
Download patch
Index: client/html/generated/html/dartium/WebGLContextAttributes.dart
diff --git a/client/html/generated/html/dartium/WebGLContextAttributes.dart b/client/html/generated/html/dartium/WebGLContextAttributes.dart
new file mode 100644
index 0000000000000000000000000000000000000000..ba7dda59f34ccf9e7518ac80e0ee4aa18634fb88
--- /dev/null
+++ b/client/html/generated/html/dartium/WebGLContextAttributes.dart
@@ -0,0 +1,28 @@
+
+class _WebGLContextAttributesImpl extends _DOMTypeBase implements WebGLContextAttributes {
+ _WebGLContextAttributesImpl._wrap(ptr) : super._wrap(ptr);
+
+ bool get alpha() => _wrap(_ptr.alpha);
+
+ void set alpha(bool value) { _ptr.alpha = _unwrap(value); }
+
+ bool get antialias() => _wrap(_ptr.antialias);
+
+ void set antialias(bool value) { _ptr.antialias = _unwrap(value); }
+
+ bool get depth() => _wrap(_ptr.depth);
+
+ void set depth(bool value) { _ptr.depth = _unwrap(value); }
+
+ bool get premultipliedAlpha() => _wrap(_ptr.premultipliedAlpha);
+
+ void set premultipliedAlpha(bool value) { _ptr.premultipliedAlpha = _unwrap(value); }
+
+ bool get preserveDrawingBuffer() => _wrap(_ptr.preserveDrawingBuffer);
+
+ void set preserveDrawingBuffer(bool value) { _ptr.preserveDrawingBuffer = _unwrap(value); }
+
+ bool get stencil() => _wrap(_ptr.stencil);
+
+ void set stencil(bool value) { _ptr.stencil = _unwrap(value); }
+}

Powered by Google App Engine
This is Rietveld 408576698