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

Unified Diff: tools/dom/idl/dart/dart.idl

Issue 321043003: Native method name mismatch cleanups for Dartium 36 roll. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: PTAL 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | tools/dom/scripts/systemnative.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/idl/dart/dart.idl
diff --git a/tools/dom/idl/dart/dart.idl b/tools/dom/idl/dart/dart.idl
index cdf46f30108ed9fb2c51f8d4cafa3ceaf114d7d6..e2af8ea806526fee9d6c710d049e3fb946e6c3b1 100644
--- a/tools/dom/idl/dart/dart.idl
+++ b/tools/dom/idl/dart/dart.idl
@@ -394,4 +394,103 @@ interface Screen {
boolean lockOrientation(sequence<DOMString> orientations);
};
+[Supplemental] interface CanvasRenderingContext2D {
+ [Suppressed] void webkitPutImageDataHD(ImageData? imagedata, float dx, float dy);
+ [Suppressed] void webkitPutImageDataHD(ImageData? imagedata, float dx, float dy, float dirtyX, float dirtyY, float dirtyWidth, float dirtyHeight);
+ [Suppressed] ImageData webkitGetImageDataHD(float sx, float sy, float sw, float sh);
+ [Suppressed] attribute Path currentPath;
+};
+
+[Supplemental] interface AudioParam {
+ [Suppressed] void setTargetValueAtTime(float target, double time, double timeConstant);
+ void setTargetAtTime(float target, double time, double timeConstant);
+};
+
+[Supplemental] interface AudioContext {
+ // Number of AudioBufferSourceNodes that are currently playing.
+ [Suppressed] readonly attribute unsigned long activeSourceCount;
+ [Suppressed] ScriptProcessorNode createJavaScriptNode(unsigned long bufferSize, optional unsigned long numberOfInputChannels, optional unsigned long numberOfOutputChannels);
+ [Suppressed] AudioBuffer createBuffer(ArrayBuffer? buffer, boolean mixToMono);
+ [Suppressed] GainNode createGainNode();
+ [Suppressed] DelayNode createDelayNode(optional double maxDelayTime);
+};
+
+[Supplemental] interface HTMLInputElement {
+ [Suppressed] attribute boolean webkitSpeech;
+ [Suppressed] attribute boolean webkitGrammar;
+};
+
+[Supplemental] interface ShadowRoot {
+ [Suppressed] attribute boolean applyAuthorStyles;
+};
+
+[Supplemental] interface BeforeLoadEvent {
+ [Suppressed] readonly attribute DOMString url;
+};
+
+[Supplemental] interface OscillatorNode {
+ [Suppressed] readonly attribute unsigned short playbackState;
+};
+
+[Supplemental] interface SVGElementInstance {
+ [Suppressed] readonly attribute SVGElementInstanceList childNodes;
+};
+
+[Supplemental] interface TimedItem {
+ [Suppressed] readonly attribute Timing specified;
+};
+
+[Supplemental] interface DOMImplementation {
+ [Suppressed]
+ CSSStyleSheet createCSSStyleSheet([Default=Undefined] optional DOMString title,
+ [Default=Undefined] optional DOMString media);
+};
+
+[Supplemental] interface SVGSVGElement {
+ [Suppressed] attribute DOMString contentStyleType;
+ [Suppressed] attribute DOMString contentScriptType;
+};
+
+[Supplemental] interface WorkerGlobalScope {
+ [Suppressed] readonly attribute NotificationCenter webkitNotifications;
+};
+
+[Supplemental] interface AudioBuffer {
+ [Suppressed] attribute float gain;
+};
+
+[Supplemental] interface WorkerCrypto {
+ [Suppressed] ArrayBufferView getRandomValues(ArrayBufferView array);
+};
+
+[Supplemental] interface HTMLFormElement {
+ void requestAutocomplete([Default=Undefined] optional Dictionary details);
+ [Suppressed] void requestAutocomplete();
+};
+
+[Supplemental] interface AudioBufferSourceNode {
+ [Suppressed] readonly attribute unsigned short playbackState;
+};
+
+[Supplemental] interface SVGElementInstanceList {
+ [Suppressed] readonly attribute unsigned long length;
+};
+
+[Supplemental] interface SpeechInputResult {
+ [Suppressed] readonly attribute DOMString utterance;
+ [Suppressed] readonly attribute float confidence;
+};
+
+[Supplemental] interface SpeechInputEvent : Event {
+ [Suppressed] readonly attribute SpeechInputResultList results;
+};
+
+[Supplemental] interface SpeechInputResultList {
+ [Suppressed] readonly attribute unsigned long length;
+};
+
+[Supplemental] interface AudioBufferSourceNode : AudioSourceNode {
+ [Suppressed] readonly attribute AudioParam gain;
Emily Fortuna 2014/06/09 22:22:44 is this really removed? What are users supposed to
Jacob 2014/06/09 22:28:41 It was removed from here. Now it is only on the Ga
+};
+
Element implements GlobalEventHandlers;
« no previous file with comments | « sdk/lib/web_audio/dartium/web_audio_dartium.dart ('k') | tools/dom/scripts/systemnative.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698