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

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

Issue 13899004: Revert recent changes to dart.idl. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 Conditional=WEB_AUDIO]
6 interface AudioContext {}; 5 interface AudioContext {};
7 6
8 [Supplemental] 7 [Supplemental]
9 interface Document { 8 interface Document {
10 [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);
11 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);
12 }; 11 };
13 12
14 [Supplemental, 13 [Supplemental]
15 Conditional=WEB_AUDIO]
16 interface ScriptProcessorNode { 14 interface ScriptProcessorNode {
17 [Suppressed] attribute EventListener onaudioprocess; 15 [Suppressed] attribute EventListener onaudioprocess;
18 [Custom] void _setEventListener(EventListener eventListener); 16 [Custom] void _setEventListener(EventListener eventListener);
19 }; 17 };
20 18
21 // Force ElementTraversal. WebKit defines these directly. 19 // Force ElementTraversal. WebKit defines these directly.
22 interface ElementTraversal { 20 interface ElementTraversal {
23 readonly attribute unsigned long childElementCount; 21 readonly attribute unsigned long childElementCount;
24 readonly attribute Element firstElementChild; 22 readonly attribute Element firstElementChild;
25 readonly attribute Element lastElementChild; 23 readonly attribute Element lastElementChild;
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 raises(DOMException); 349 raises(DOMException);
352 [Custom] void send([StrictTypeChecking] in DOMString data) 350 [Custom] void send([StrictTypeChecking] in DOMString data)
353 raises(DOMException); 351 raises(DOMException);
354 [Custom] void send(in DOMFormData data) 352 [Custom] void send(in DOMFormData data)
355 raises(DOMException); 353 raises(DOMException);
356 }; 354 };
357 355
358 356
359 [Suppressed] 357 [Suppressed]
360 interface Entity {}; 358 interface Entity {};
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698