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

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

Issue 260893007: Initial overloading implementation in _blink (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Eliminated duplicate entry in dart.idl Created 6 years, 7 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/lib/analyzer/analyze_library.status ('k') | 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 // 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 readonly attribute Element previousElementSibling; 61 readonly attribute Element previousElementSibling;
62 }; 62 };
63 Element implements ElementTraversal; 63 Element implements ElementTraversal;
64 */ 64 */
65 65
66 [Callback] 66 [Callback]
67 interface TimeoutHandler { 67 interface TimeoutHandler {
68 void handleEvent(); 68 void handleEvent();
69 }; 69 };
70 70
71 // FIXME(leafp): This is a temporary hack to get things running while
72 // we are still generating _blink from the dart side idl files.
73 // Once we are up and running generating dart:_blink in dartium
74 // this should go away.
75 [Supplemental]
76 interface URL {
77 [Suppressed] static DOMString createObjectURL(WebKitMediaSource source);
78 };
79
71 [Supplemental] 80 [Supplemental]
72 interface CanvasRenderingContext2D { 81 interface CanvasRenderingContext2D {
73 [DartName=createImageDataFromImageData] ImageData createImageData(ImageData im agedata); 82 [DartName=createImageDataFromImageData] ImageData createImageData(ImageData im agedata);
74 83
75 [Suppressed] attribute boolean webkitImageSmoothingEnabled; 84 [Suppressed] attribute boolean webkitImageSmoothingEnabled;
76 }; 85 };
77 86
78 [Supplemental] 87 [Supplemental]
79 interface ConsoleBase { 88 interface ConsoleBase {
80 [Suppressed] void assert(boolean condition); 89 [Suppressed] void assert(boolean condition);
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 [Suppressed] 365 [Suppressed]
357 interface TextDecoder {}; 366 interface TextDecoder {};
358 367
359 [Supplemental] 368 [Supplemental]
360 interface Window : EventTarget {}; 369 interface Window : EventTarget {};
361 370
362 [Suppressed] 371 [Suppressed]
363 interface Promise {}; 372 interface Promise {};
364 373
365 Element implements GlobalEventHandlers; 374 Element implements GlobalEventHandlers;
OLDNEW
« no previous file with comments | « tests/lib/analyzer/analyze_library.status ('k') | tools/dom/scripts/htmldartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698