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

Side by Side Diff: sdk/lib/web_gl/dart2js/web_gl_dart2js.dart

Issue 22880007: add one-line doc for web gl (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 4 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
« no previous file with comments | « no previous file | tools/dom/templates/html/dart2js/web_gl_dart2js.darttemplate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /**
2 * 3D programming in the browser.
3 */
1 library dart.dom.web_gl; 4 library dart.dom.web_gl;
2 5
3 import 'dart:collection'; 6 import 'dart:collection';
4 import 'dart:_collection-dev' hide deprecated; 7 import 'dart:_collection-dev' hide deprecated;
5 import 'dart:html'; 8 import 'dart:html';
6 import 'dart:html_common'; 9 import 'dart:html_common';
7 import 'dart:typed_data'; 10 import 'dart:typed_data';
8 import 'dart:_js_helper' show Creates, JSName, Null, Returns, convertDartClosure ToJS; 11 import 'dart:_js_helper' show Creates, JSName, Null, Returns, convertDartClosure ToJS;
9 import 'dart:_foreign_helper' show JS; 12 import 'dart:_foreign_helper' show JS;
10 import 'dart:_interceptors' show Interceptor, JSExtendableArray; 13 import 'dart:_interceptors' show Interceptor, JSExtendableArray;
(...skipping 2813 matching lines...) Expand 10 before | Expand all | Expand 10 after
2824 // for details. All rights reserved. Use of this source code is governed by a 2827 // for details. All rights reserved. Use of this source code is governed by a
2825 // BSD-style license that can be found in the LICENSE file. 2828 // BSD-style license that can be found in the LICENSE file.
2826 2829
2827 2830
2828 @DocsEditable() 2831 @DocsEditable()
2829 @DomName('WebGLVertexArrayObjectOES') 2832 @DomName('WebGLVertexArrayObjectOES')
2830 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ 2833 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/
2831 @Experimental() // experimental 2834 @Experimental() // experimental
2832 class VertexArrayObject extends Interceptor native "WebGLVertexArrayObjectOES" { 2835 class VertexArrayObject extends Interceptor native "WebGLVertexArrayObjectOES" {
2833 } 2836 }
OLDNEW
« no previous file with comments | « no previous file | tools/dom/templates/html/dart2js/web_gl_dart2js.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698