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

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

Issue 328663002: Version 1.5.0-dev.4.5 (Closed) Base URL: http://dart.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 6 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 | « dart/tools/VERSION ('k') | dart/tools/dom/scripts/systemnative.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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 387
388 [Suppressed] 388 [Suppressed]
389 interface Promise {}; 389 interface Promise {};
390 390
391 [Supplemental] 391 [Supplemental]
392 interface Screen { 392 interface Screen {
393 [Suppressed] 393 [Suppressed]
394 boolean lockOrientation(sequence<DOMString> orientations); 394 boolean lockOrientation(sequence<DOMString> orientations);
395 }; 395 };
396 396
397 [Supplemental] interface CanvasRenderingContext2D {
398 [Suppressed] void webkitPutImageDataHD(ImageData? imagedata, float dx, float dy);
399 [Suppressed] void webkitPutImageDataHD(ImageData? imagedata, float dx, float dy, float dirtyX, float dirtyY, float dirtyWidth, float dirtyHeight);
400 [Suppressed] ImageData webkitGetImageDataHD(float sx, float sy, float sw, fl oat sh);
401 [Suppressed] attribute Path currentPath;
402 };
403
404 [Supplemental] interface AudioParam {
405 [Suppressed] void setTargetValueAtTime(float target, double time, double tim eConstant);
406 void setTargetAtTime(float target, double time, double timeConstant);
407 };
408
409 [Supplemental] interface AudioContext {
410 // Number of AudioBufferSourceNodes that are currently playing.
411 [Suppressed] readonly attribute unsigned long activeSourceCount;
412 [Suppressed] ScriptProcessorNode createJavaScriptNode(unsigned long bufferSi ze, optional unsigned long numberOfInputChannels, optional unsigned long numberO fOutputChannels);
413 [Suppressed] AudioBuffer createBuffer(ArrayBuffer? buffer, boolean mixToMono );
414 [Suppressed] GainNode createGainNode();
415 [Suppressed] DelayNode createDelayNode(optional double maxDelayTime);
416 };
417
418 [Supplemental] interface HTMLInputElement {
419 [Suppressed] attribute boolean webkitSpeech;
420 [Suppressed] attribute boolean webkitGrammar;
421 };
422
423 [Supplemental] interface ShadowRoot {
424 [Suppressed] attribute boolean applyAuthorStyles;
425 };
426
427 [Supplemental] interface BeforeLoadEvent {
428 [Suppressed] readonly attribute DOMString url;
429 };
430
431 [Supplemental] interface OscillatorNode {
432 [Suppressed] readonly attribute unsigned short playbackState;
433 };
434
435 [Supplemental] interface SVGElementInstance {
436 [Suppressed] readonly attribute SVGElementInstanceList childNodes;
437 };
438
439 [Supplemental] interface TimedItem {
440 [Suppressed] readonly attribute Timing specified;
441 };
442
443 [Supplemental] interface DOMImplementation {
444 [Suppressed]
445 CSSStyleSheet createCSSStyleSheet([Default=Undefined] optional DOMString tit le,
446 [Default=Undefined] optional DOMString med ia);
447 };
448
449 [Supplemental] interface SVGSVGElement {
450 [Suppressed] attribute DOMString contentStyleType;
451 [Suppressed] attribute DOMString contentScriptType;
452 };
453
454 [Supplemental] interface WorkerGlobalScope {
455 [Suppressed] readonly attribute NotificationCenter webkitNotifications;
456 };
457
458 [Supplemental] interface AudioBuffer {
459 [Suppressed] attribute float gain;
460 };
461
462 [Supplemental] interface WorkerCrypto {
463 [Suppressed] ArrayBufferView getRandomValues(ArrayBufferView array);
464 };
465
466 [Supplemental] interface HTMLFormElement {
467 void requestAutocomplete([Default=Undefined] optional Dictionary details);
468 [Suppressed] void requestAutocomplete();
469 };
470
471 [Supplemental] interface AudioBufferSourceNode {
472 [Suppressed] readonly attribute unsigned short playbackState;
473 };
474
475 [Supplemental] interface SpeechInputResult {
476 [Suppressed] readonly attribute DOMString utterance;
477 [Suppressed] readonly attribute float confidence;
478 };
479
480 [Supplemental] interface SpeechInputEvent : Event {
481 [Suppressed] readonly attribute SpeechInputResultList results;
482 };
483
484 [Supplemental] interface AudioBufferSourceNode : AudioSourceNode {
485 [Suppressed] readonly attribute AudioParam gain;
486 };
487
397 Element implements GlobalEventHandlers; 488 Element implements GlobalEventHandlers;
OLDNEW
« no previous file with comments | « dart/tools/VERSION ('k') | dart/tools/dom/scripts/systemnative.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698