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

Unified Diff: sdk/lib/web_gl/dartium/web_gl_dartium.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 | « sdk/lib/web_gl/dart2js/web_gl_dart2js.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/web_gl/dartium/web_gl_dartium.dart
diff --git a/sdk/lib/web_gl/dartium/web_gl_dartium.dart b/sdk/lib/web_gl/dartium/web_gl_dartium.dart
index ab4648deb87fb9dfc002c47d670a5d52ac5ee6f8..486d0cffd3646d59e5b60b514e45262709774d3e 100644
--- a/sdk/lib/web_gl/dartium/web_gl_dartium.dart
+++ b/sdk/lib/web_gl/dartium/web_gl_dartium.dart
@@ -742,19 +742,19 @@ class OesVertexArrayObject extends NativeFieldWrapperClass1 {
@DomName('OESVertexArrayObject.bindVertexArrayOES')
@DocsEditable
- void bindVertexArray(WebGLVertexArrayObject arrayObject) native "OESVertexArrayObject_bindVertexArrayOES_Callback";
+ void bindVertexArray(VertexArrayObject arrayObject) native "OESVertexArrayObject_bindVertexArrayOES_Callback";
@DomName('OESVertexArrayObject.createVertexArrayOES')
@DocsEditable
- WebGLVertexArrayObject createVertexArray() native "OESVertexArrayObject_createVertexArrayOES_Callback";
+ VertexArrayObject createVertexArray() native "OESVertexArrayObject_createVertexArrayOES_Callback";
@DomName('OESVertexArrayObject.deleteVertexArrayOES')
@DocsEditable
- void deleteVertexArray(WebGLVertexArrayObject arrayObject) native "OESVertexArrayObject_deleteVertexArrayOES_Callback";
+ void deleteVertexArray(VertexArrayObject arrayObject) native "OESVertexArrayObject_deleteVertexArrayOES_Callback";
@DomName('OESVertexArrayObject.isVertexArrayOES')
@DocsEditable
- bool isVertexArray(WebGLVertexArrayObject arrayObject) native "OESVertexArrayObject_isVertexArrayOES_Callback";
+ bool isVertexArray(VertexArrayObject arrayObject) native "OESVertexArrayObject_isVertexArrayOES_Callback";
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
@@ -2143,7 +2143,7 @@ class UniformLocation extends NativeFieldWrapperClass1 {
@DocsEditable
@DomName('WebGLVertexArrayObjectOES')
-class WebGLVertexArrayObject extends NativeFieldWrapperClass1 {
- WebGLVertexArrayObject.internal();
+class VertexArrayObject extends NativeFieldWrapperClass1 {
+ VertexArrayObject.internal();
}
« no previous file with comments | « sdk/lib/web_gl/dart2js/web_gl_dart2js.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698