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

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

Issue 1759303003: Change scripts to avoid generating things that bloat the compiled code (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 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
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/scripts/dartmetadata.py » ('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 dd50a327482f32fbd9243fa4b9a21274930c173a..37916f4e659d22f2a02a7b1d418bab572b811384 100644
--- a/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart
+++ b/sdk/lib/web_gl/dart2js/web_gl_dart2js.dart
@@ -401,6 +401,71 @@ class Buffer extends Interceptor {
@DocsEditable()
+@DomName('CHROMIUMSubscribeUniform')
+@Experimental() // untriaged
+@Native("CHROMIUMSubscribeUniform")
+class ChromiumSubscribeUniform extends Interceptor {
+ // To suppress missing implicit constructor warnings.
+ factory ChromiumSubscribeUniform._() { throw new UnsupportedError("Not supported"); }
+
+ @DomName('CHROMIUMSubscribeUniform.MOUSE_POSITION_CHROMIUM')
+ @DocsEditable()
+ @Experimental() // untriaged
+ static const int MOUSE_POSITION_CHROMIUM = 0x924C;
+
+ @DomName('CHROMIUMSubscribeUniform.SUBSCRIBED_VALUES_BUFFER_CHROMIUM')
+ @DocsEditable()
+ @Experimental() // untriaged
+ static const int SUBSCRIBED_VALUES_BUFFER_CHROMIUM = 0x924B;
+
+ @JSName('bindValuebufferCHROMIUM')
+ @DomName('CHROMIUMSubscribeUniform.bindValuebufferCHROMIUM')
+ @DocsEditable()
+ @Experimental() // untriaged
+ void bindValuebufferChromium(int target, ChromiumValuebuffer buffer) native;
+
+ @JSName('createValuebufferCHROMIUM')
+ @DomName('CHROMIUMSubscribeUniform.createValuebufferCHROMIUM')
+ @DocsEditable()
+ @Experimental() // untriaged
+ ChromiumValuebuffer createValuebufferChromium() native;
+
+ @JSName('deleteValuebufferCHROMIUM')
+ @DomName('CHROMIUMSubscribeUniform.deleteValuebufferCHROMIUM')
+ @DocsEditable()
+ @Experimental() // untriaged
+ void deleteValuebufferChromium(ChromiumValuebuffer buffer) native;
+
+ @JSName('isValuebufferCHROMIUM')
+ @DomName('CHROMIUMSubscribeUniform.isValuebufferCHROMIUM')
+ @DocsEditable()
+ @Experimental() // untriaged
+ bool isValuebufferChromium(ChromiumValuebuffer buffer) native;
+
+ @JSName('populateSubscribedValuesCHROMIUM')
+ @DomName('CHROMIUMSubscribeUniform.populateSubscribedValuesCHROMIUM')
+ @DocsEditable()
+ @Experimental() // untriaged
+ void populateSubscribedValuesChromium(int target) native;
+
+ @JSName('subscribeValueCHROMIUM')
+ @DomName('CHROMIUMSubscribeUniform.subscribeValueCHROMIUM')
+ @DocsEditable()
+ @Experimental() // untriaged
+ void subscribeValueChromium(int target, int subscriptions) native;
+
+ @JSName('uniformValuebufferCHROMIUM')
+ @DomName('CHROMIUMSubscribeUniform.uniformValuebufferCHROMIUM')
+ @DocsEditable()
+ @Experimental() // untriaged
+ void uniformValuebufferChromium(UniformLocation location, int target, int subscription) 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
+// BSD-style license that can be found in the LICENSE file.
+
+
+@DocsEditable()
@DomName('WebGLCompressedTextureATC')
// http://www.khronos.org/registry/webgl/extensions/WEBGL_compressed_texture_atc/
@Experimental()
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/scripts/dartmetadata.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698