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

Side by Side Diff: tools/dom/idl/dart/dart.idl

Issue 18277003: "Reverting 24655" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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 | « tools/dom/dom.json ('k') | tools/dom/scripts/generator.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 };
OLDNEW
« no previous file with comments | « tools/dom/dom.json ('k') | tools/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698