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

Unified Diff: sdk/lib/web_gl/dart2js/web_gl_dart2js.dart

Issue 13467020: Renaming WebGLVertexArrayObject (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | sdk/lib/web_gl/dartium/web_gl_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/web_gl/dart2js/web_gl_dart2js.dart
diff --git a/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart b/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart
index 0c3db33fff6ba8f90d1968b0925101a512d947e7..1064ba799acfcb10800829e1d35fa0b7306c1f25 100644
--- a/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart
+++ b/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart
@@ -644,22 +644,22 @@ class OesVertexArrayObject native "*OESVertexArrayObject" {
@JSName('bindVertexArrayOES')
@DomName('OESVertexArrayObject.bindVertexArrayOES')
@DocsEditable
- void bindVertexArray(WebGLVertexArrayObject arrayObject) native;
+ void bindVertexArray(VertexArrayObject arrayObject) native;
@JSName('createVertexArrayOES')
@DomName('OESVertexArrayObject.createVertexArrayOES')
@DocsEditable
- WebGLVertexArrayObject createVertexArray() native;
+ VertexArrayObject createVertexArray() native;
@JSName('deleteVertexArrayOES')
@DomName('OESVertexArrayObject.deleteVertexArrayOES')
@DocsEditable
- void deleteVertexArray(WebGLVertexArrayObject arrayObject) native;
+ void deleteVertexArray(VertexArrayObject arrayObject) native;
@JSName('isVertexArrayOES')
@DomName('OESVertexArrayObject.isVertexArrayOES')
@DocsEditable
- bool isVertexArray(WebGLVertexArrayObject arrayObject) native;
+ bool isVertexArray(VertexArrayObject arrayObject) native;
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
@@ -1985,5 +1985,5 @@ class UniformLocation native "*WebGLUniformLocation" {
@DocsEditable
@DomName('WebGLVertexArrayObjectOES')
-class WebGLVertexArrayObject native "*WebGLVertexArrayObjectOES" {
+class VertexArrayObject native "*WebGLVertexArrayObjectOES" {
}
« no previous file with comments | « no previous file | sdk/lib/web_gl/dartium/web_gl_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698