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

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: 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 | « no previous file | tools/dom/scripts/htmldartgenerator.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 [Custom] void decodeAudioData(in ArrayBuffer audioData, in AudioBufferCallback successCallback, in AudioBufferCallback errorCallback)
Anton Muhin 2013/04/18 16:13:40 please, TODO that those custom methods should be a
7 raises(DOMException);
8 };
9
10 [ Supplemental ]
Anton Muhin 2013/04/18 16:13:40 nit: no spaces around Supplemental.
11 interface WaveShaperNode {
12 [CustomSetter] attribute Float32Array curve;
13 };
14
15 [ Supplemental ]
16 interface AudioParam {
17 [Custom] void setValueCurveAtTime(in Float32Array values, in float time, in fl oat duration);
18 };
6 19
7 [Supplemental] 20 [Supplemental]
8 interface Document { 21 interface Document {
9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); 22 [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); 23 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height);
11 }; 24 };
12 25
13 [Supplemental] 26 [Supplemental]
14 interface ScriptProcessorNode { 27 interface ScriptProcessorNode {
15 [Suppressed] attribute EventListener onaudioprocess; 28 [Suppressed] attribute EventListener onaudioprocess;
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 [Suppressed] 386 [Suppressed]
374 interface ScriptProfile {}; 387 interface ScriptProfile {};
375 388
376 389
377 [Suppressed] 390 [Suppressed]
378 interface ScriptProfileNode {}; 391 interface ScriptProfileNode {};
379 392
380 393
381 [Suppressed] 394 [Suppressed]
382 interface Entity {}; 395 interface Entity {};
OLDNEW
« no previous file with comments | « no previous file | tools/dom/scripts/htmldartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698