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

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

Issue 1890983002: Remove MutationEvent bad entries in both removed list and renamed list (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Re-gened Created 4 years, 8 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
« no previous file with comments | « sdk/lib/js/dartium/cached_patches.dart ('k') | tools/dom/scripts/htmlrenamer.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 [DartSupplemental, 3 [DartSupplemental,
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 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 // TODO(terry): Need to support both send operations where the first param 415 // TODO(terry): Need to support both send operations where the first param
416 // is Uint8Array or sequence<unsigned long>. For now suppress 416 // is Uint8Array or sequence<unsigned long>. For now suppress
417 // the new operation. Vijay suggestion, and I think this makes 417 // the new operation. Vijay suggestion, and I think this makes
418 // sense, change dart:html to have a send operation that takes 418 // sense, change dart:html to have a send operation that takes
419 // a List<int> and have custom handler to call the correct 419 // a List<int> and have custom handler to call the correct
420 // method. The dart:blink library needs to do something else 420 // method. The dart:blink library needs to do something else
421 // postfix the name with send_sequence (?). 421 // postfix the name with send_sequence (?).
422 [DartSuppress] void send(sequence<unsigned long> data, optional double times tamp); 422 [DartSuppress] void send(sequence<unsigned long> data, optional double times tamp);
423 }; 423 };
424 424
425 [DartSuppress]
426 interface MutationEvent {};
427
428
425 Element implements GlobalEventHandlers; 429 Element implements GlobalEventHandlers;
426 430
427 431
428 // This only exists in Safari, and is deprecated there. But include it anyway 432 // This only exists in Safari, and is deprecated there. But include it anyway
429 // because otherwise iterating CSSRules in Safari can yield unknown JS objects. 433 // because otherwise iterating CSSRules in Safari can yield unknown JS objects.
430 interface CSSCharsetRule : CSSRule { 434 interface CSSCharsetRule : CSSRule {
431 [MeasureAs=CSSCharsetRuleEncoding] attribute DOMString encoding; 435 [MeasureAs=CSSCharsetRuleEncoding] attribute DOMString encoding;
432 }; 436 };
OLDNEW
« no previous file with comments | « sdk/lib/js/dartium/cached_patches.dart ('k') | tools/dom/scripts/htmlrenamer.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698