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

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

Issue 11886099: Stop generating MutationCallback right way. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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/scripts/generator.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 6
7 [Supplemental] 7 [Supplemental]
8 interface Document { 8 interface Document {
9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); 9 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height);
10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height); 10 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStrin g name, in long width, in long height);
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 }; 284 };
285 285
286 [Supplemental, Callback] // Add missing Callback attribute. 286 [Supplemental, Callback] // Add missing Callback attribute.
287 interface VoidCallback { 287 interface VoidCallback {
288 }; 288 };
289 289
290 interface SVGNumber { 290 interface SVGNumber {
291 [StrictTypeChecking, Custom] attribute float value; 291 [StrictTypeChecking, Custom] attribute float value;
292 }; 292 };
293 293
294 // TODO(antonm): get rid of it to follow V8 bindings. 294 // Keep it in to generate Dart code, C++ implementation is filterd out in genera tor.
295 [ 295 [
296 Callback 296 Callback
297 ] interface MutationCallback { 297 ] interface MutationCallback {
298 [Custom] boolean handleEvent(in MutationRecordArray mutations, in MutationObse rver observer); 298 [Custom] boolean handleEvent(in MutationRecordArray mutations, in MutationObse rver observer);
299 }; 299 };
300 300
301 [Supplemental, 301 [Supplemental,
302 CustomConstructor, 302 CustomConstructor,
303 // Provide missing constructor signature. 303 // Provide missing constructor signature.
304 Constructor(MutationCallback callback)] 304 Constructor(MutationCallback callback)]
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 [Suppressed] boolean send(in DOMString data) raises(DOMException); 337 [Suppressed] boolean send(in DOMString data) raises(DOMException);
338 338
339 [Custom] void send(DOMString data) raises(DOMException); 339 [Custom] void send(DOMString data) raises(DOMException);
340 [Custom] void send(Blob data) raises(DOMException); 340 [Custom] void send(Blob data) raises(DOMException);
341 [Custom] void send(ArrayBuffer data) raises(DOMException); 341 [Custom] void send(ArrayBuffer data) raises(DOMException);
342 [Custom] void send(ArrayBufferView data) raises(DOMException); 342 [Custom] void send(ArrayBufferView data) raises(DOMException);
343 }; 343 };
344 344
345 [Suppressed] 345 [Suppressed]
346 interface Entity {}; 346 interface Entity {};
OLDNEW
« no previous file with comments | « no previous file | tools/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698