OLD | NEW |
1 // This file introduces / supplements and forces Dart declarations. | 1 // This file introduces / supplements and forces Dart declarations. |
2 | 2 |
3 [Supplemental, | 3 [Supplemental, |
4 Constructor] | 4 Constructor] |
5 interface AudioContext { | 5 interface AudioContext { |
6 // TODO(ager): Auto-generate this custom method when the info about retaining | 6 // TODO(ager): Auto-generate this custom method when the info about retaining |
7 // typed arrays is in the IDL. | 7 // typed arrays is in the IDL. |
8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe
ssCallback, AudioBufferCallback errorCallback); | 8 [Custom] void decodeAudioData(ArrayBuffer audioData, AudioBufferCallback succe
ssCallback, AudioBufferCallback errorCallback); |
9 }; | 9 }; |
10 | 10 |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 [Suppressed, StrictTypeChecking, Custom] void getRenderbufferParameter(); | 146 [Suppressed, StrictTypeChecking, Custom] void getRenderbufferParameter(); |
147 | 147 |
148 [Custom] any getShaderParameter(WebGLShader shader, unsigned long pname); | 148 [Custom] any getShaderParameter(WebGLShader shader, unsigned long pname); |
149 [Suppressed, StrictTypeChecking, Custom] void getShaderParameter(); | 149 [Suppressed, StrictTypeChecking, Custom] void getShaderParameter(); |
150 | 150 |
151 // TBD | 151 // TBD |
152 // void glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, G
Lint* range, GLint* precision); | 152 // void glGetShaderPrecisionFormat (GLenum shadertype, GLenum precisiontype, G
Lint* range, GLint* precision); |
153 | 153 |
154 [Custom] any getExtension(DOMString name); | 154 [Custom] any getExtension(DOMString name); |
155 [Suppressed, StrictTypeChecking, Custom] void getExtension(DOMString name); | 155 [Suppressed, StrictTypeChecking, Custom] void getExtension(DOMString name); |
| 156 [Custom] DOMString[] getSupportedExtensions(); |
156 [Suppressed, StrictTypeChecking, Custom] void getSupportedExtensions(); | 157 [Suppressed, StrictTypeChecking, Custom] void getSupportedExtensions(); |
157 | 158 |
158 [Custom] any getTexParameter(unsigned long target, unsigned long pname); | 159 [Custom] any getTexParameter(unsigned long target, unsigned long pname); |
159 [Suppressed, StrictTypeChecking, Custom] void getTexParameter(); | 160 [Suppressed, StrictTypeChecking, Custom] void getTexParameter(); |
160 | 161 |
161 [Custom] any getUniform(WebGLProgram program, WebGLUniformLocation location); | 162 [Custom] any getUniform(WebGLProgram program, WebGLUniformLocation location); |
162 [Suppressed, StrictTypeChecking, Custom] void getUniform(); | 163 [Suppressed, StrictTypeChecking, Custom] void getUniform(); |
163 | 164 |
164 [Custom] any getVertexAttrib(unsigned long index, unsigned long pname); | 165 [Custom] any getVertexAttrib(unsigned long index, unsigned long pname); |
165 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib(); | 166 [Suppressed, StrictTypeChecking, Custom] void getVertexAttrib(); |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
311 [Custom] void reload(); | 312 [Custom] void reload(); |
312 | 313 |
313 // URI decomposition attributes | 314 // URI decomposition attributes |
314 [CustomSetter] attribute DOMString protocol; | 315 [CustomSetter] attribute DOMString protocol; |
315 [CustomSetter] attribute DOMString host; | 316 [CustomSetter] attribute DOMString host; |
316 [CustomSetter] attribute DOMString hostname; | 317 [CustomSetter] attribute DOMString hostname; |
317 [CustomSetter] attribute DOMString port; | 318 [CustomSetter] attribute DOMString port; |
318 [CustomSetter] attribute DOMString pathname; | 319 [CustomSetter] attribute DOMString pathname; |
319 [CustomSetter] attribute DOMString search; | 320 [CustomSetter] attribute DOMString search; |
320 [CustomSetter] attribute DOMString hash; | 321 [CustomSetter] attribute DOMString hash; |
321 }; | 322 }; |
OLD | NEW |