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

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

Issue 302753005: 1985 no longer supports webkitBackingStorePixelRatio on CanvasRenderingContext2D (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added @deprecated 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
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 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 [Supplemental] 88 [Supplemental]
89 interface CanvasRenderingContext2D { 89 interface CanvasRenderingContext2D {
90 [DartName=createImageDataFromImageData] ImageData createImageData(ImageData im agedata); 90 [DartName=createImageDataFromImageData] ImageData createImageData(ImageData im agedata);
91 91
92 // Removed in 1916. 92 // Removed in 1916.
93 [Suppressed] void drawSystemFocusRing(Element element); 93 [Suppressed] void drawSystemFocusRing(Element element);
94 94
95 [Suppressed] void assert(boolean condition); 95 [Suppressed] void assert(boolean condition);
96 96
97 [Suppressed] attribute boolean webkitImageSmoothingEnabled; 97 [Suppressed] attribute boolean webkitImageSmoothingEnabled;
98
99 // Removed in 1985.
100 [Suppressed] readonly attribute float webkitBackingStorePixelRatio;
98 }; 101 };
99 102
100 [Supplemental] 103 [Supplemental]
101 interface ConsoleBase { 104 interface ConsoleBase {
102 [Suppressed] void assert(boolean condition); 105 [Suppressed] void assert(boolean condition);
103 [CallWith=ScriptArguments|ScriptState] void assertCondition(boolean condition) ; 106 [CallWith=ScriptArguments|ScriptState] void assertCondition(boolean condition) ;
104 }; 107 };
105 108
106 interface HTMLCanvasElement { 109 interface HTMLCanvasElement {
107 [Suppressed] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=Nul lString,Default=Undefined] DOMString type); 110 [Suppressed] DOMString toDataURL([TreatNullAs=NullString, TreatUndefinedAs=Nul lString,Default=Undefined] DOMString type);
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
369 [Suppressed] 372 [Suppressed]
370 interface Promise {}; 373 interface Promise {};
371 374
372 [Supplemental] 375 [Supplemental]
373 interface Screen { 376 interface Screen {
374 [Suppressed] 377 [Suppressed]
375 boolean lockOrientation(sequence<DOMString> orientations); 378 boolean lockOrientation(sequence<DOMString> orientations);
376 }; 379 };
377 380
378 Element implements GlobalEventHandlers; 381 Element implements GlobalEventHandlers;
OLDNEW
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | tools/dom/templates/html/impl/impl_CanvasRenderingContext2D.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698