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

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

Issue 13811054: Update code generator for dartium dart:html with typeddata. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comments Created 7 years, 8 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 | « tests/html/html.status ('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
7 // typed arrays is in the IDL.
8 [Custom] void decodeAudioData(in ArrayBuffer audioData, in AudioBufferCallback successCallback, in AudioBufferCallback errorCallback);
9 };
10
11 [Supplemental]
12 interface WaveShaperNode {
13 // TODO(ager): Auto-generate this custom method when the info about retaining
14 // typed arrays is in the IDL.
15 [CustomSetter] attribute Float32Array curve;
16 };
17
18 [Supplemental]
19 interface AudioParam {
20 // TODO(ager): Auto-generate this custom method when the info about retaining
21 // typed arrays is in the IDL.
22 [Custom] void setValueCurveAtTime(in Float32Array values, in float time, in fl oat duration);
23 };
6 24
7 [Supplemental] 25 [Supplemental]
8 interface Document { 26 interface Document {
9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); 27 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height);
10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); 28 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height);
11 }; 29 };
12 30
13 [Supplemental] 31 [Supplemental]
14 interface ScriptProcessorNode { 32 interface ScriptProcessorNode {
15 [Suppressed] attribute EventListener onaudioprocess; 33 [Suppressed] attribute EventListener onaudioprocess;
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after
349 [Suppressed] 367 [Suppressed]
350 interface InspectorFrontendHost {}; 368 interface InspectorFrontendHost {};
351 369
352 370
353 [Suppressed] 371 [Suppressed]
354 interface JavaScriptCallFrame {}; 372 interface JavaScriptCallFrame {};
355 373
356 374
357 [Suppressed] 375 [Suppressed]
358 interface Entity {}; 376 interface Entity {};
OLDNEW
« no previous file with comments | « tests/html/html.status ('k') | tools/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698