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

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

Issue 258503008: Support Dart debugger API directly (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: PTAL 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 | « no previous file | tools/dom/src/native_DOMImplementation.dart » ('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 305 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 [Custom] void send(Blob data); 316 [Custom] void send(Blob data);
317 [Custom] void send(Document data); 317 [Custom] void send(Document data);
318 [Custom] void send([StrictTypeChecking] DOMString data); 318 [Custom] void send([StrictTypeChecking] DOMString data);
319 [Custom] void send(FormData data); 319 [Custom] void send(FormData data);
320 }; 320 };
321 321
322 [Suppressed] 322 [Suppressed]
323 interface AbstractView {}; 323 interface AbstractView {};
324 324
325 325
326 [Suppressed] 326 [Supplemental, NoInterfaceObject]
Jacob 2014/05/07 00:13:29 This is needed for the matching CL. Basically it
327 interface InjectedScriptHost {}; 327 interface InjectedScriptHost {
328 [Suppressed, Custom] any inspectedObject(long num);
329 [Suppressed, Custom] any internalConstructorName(any obj);
330 [Suppressed, Custom] boolean isHTMLAllCollection(any obj);
331 [Suppressed, Custom] DOMString type(any obj);
332 [Suppressed, Custom] any functionDetails(any obj);
333 [Suppressed, Custom] any[] getInternalProperties(any obj);
334 [Suppressed, Custom] EventListener[] getEventListeners(EventTarget target);
335 [Suppressed, Custom] any evaluate(DOMString text);
336 [Suppressed, Custom] void debugFunction(any fn);
337 [Suppressed, Custom] void undebugFunction(any fn);
338 [Suppressed, Custom] void monitorFunction(any fn);
339 [Suppressed, Custom] void unmonitorFunction(any fn);
340
341 // Only declarative scope (local, with and catch) is accepted. Returns undef ined.
342 [Suppressed, Custom] any setFunctionVariableValue(any functionObject, long s copeIndex, DOMString variableName, any newValue);
343 };
328 344
329 345
330 [Suppressed] 346 [Suppressed]
331 interface InspectorFrontendHost {}; 347 interface InspectorFrontendHost {};
332 348
333 349
334 [Suppressed] 350 [Suppressed]
335 interface JavaScriptCallFrame {}; 351 interface JavaScriptCallFrame {};
336 352
337 353
(...skipping 27 matching lines...) Expand all
365 [Suppressed] 381 [Suppressed]
366 interface TextDecoder {}; 382 interface TextDecoder {};
367 383
368 [Supplemental] 384 [Supplemental]
369 interface Window : EventTarget {}; 385 interface Window : EventTarget {};
370 386
371 [Suppressed] 387 [Suppressed]
372 interface Promise {}; 388 interface Promise {};
373 389
374 Element implements GlobalEventHandlers; 390 Element implements GlobalEventHandlers;
OLDNEW
« no previous file with comments | « no previous file | tools/dom/src/native_DOMImplementation.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698