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

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

Issue 10704100: Do not split attributes on getters and setters in databasebuilder. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 | lib/dom/scripts/databasebuilder.py » ('j') | lib/dom/scripts/generator.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 // This file introduces / supplements and forces Dart declarations. 2 // This file introduces / supplements and forces Dart declarations.
3 3
4 module default { 4 module default {
5 FileList implements sequence<File>; 5 FileList implements sequence<File>;
6 HTMLCollection implements sequence<Node>; 6 HTMLCollection implements sequence<Node>;
7 MediaList implements sequence<DOMString>; 7 MediaList implements sequence<DOMString>;
8 NamedNodeMap implements sequence<Node>; 8 NamedNodeMap implements sequence<Node>;
9 NodeList implements sequence<Node>; 9 NodeList implements sequence<Node>;
10 StyleSheetList implements sequence<StyleSheet>; 10 StyleSheetList implements sequence<StyleSheet>;
(...skipping 18 matching lines...) Expand all
29 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStr ing name, in long width, in long height); 29 [Suppressed] DOMObject getCSSCanvasContext(in DOMString contextId, in DOMStr ing name, in long width, in long height);
30 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStr ing name, in long width, in long height); 30 CanvasRenderingContext getCSSCanvasContext(in DOMString contextId, in DOMStr ing name, in long width, in long height);
31 }; 31 };
32 32
33 DOMStringList implements sequence<DOMString>; 33 DOMStringList implements sequence<DOMString>;
34 }; 34 };
35 35
36 module dom { 36 module dom {
37 // Force ElementTraversal. WebKit defines these directly. 37 // Force ElementTraversal. WebKit defines these directly.
38 interface ElementTraversal { 38 interface ElementTraversal {
39 getter attribute unsigned long childElementCount; 39 readonly attribute unsigned long childElementCount;
40 getter attribute Element firstElementChild; 40 readonly attribute Element firstElementChild;
41 getter attribute Element lastElementChild; 41 readonly attribute Element lastElementChild;
42 getter attribute Element nextElementSibling; 42 readonly attribute Element nextElementSibling;
43 getter attribute Element previousElementSibling; 43 readonly attribute Element previousElementSibling;
44 }; 44 };
45 Element implements ElementTraversal; 45 Element implements ElementTraversal;
46 46
47 [Callback] 47 [Callback]
48 interface TimeoutHandler { 48 interface TimeoutHandler {
49 void handleEvent(); 49 void handleEvent();
50 }; 50 };
51 }; 51 };
52 52
53 module html { 53 module html {
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 }; 266 };
267 }; 267 };
268 268
269 module html { 269 module html {
270 [Supplemental, Callback] // Add missing Callback attribute. 270 [Supplemental, Callback] // Add missing Callback attribute.
271 interface VoidCallback { 271 interface VoidCallback {
272 }; 272 };
273 }; 273 };
274 274
275 module svg { 275 module svg {
276 interface SVGNumber { 276 interface SVGNumber {
277 [StrictTypeChecking, Custom] attribute double value; 277 [StrictTypeChecking, Custom] attribute float value;
278 }; 278 };
279 } 279 }
OLDNEW
« no previous file with comments | « no previous file | lib/dom/scripts/databasebuilder.py » ('j') | lib/dom/scripts/generator.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698