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

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

Issue 10020023: Remove unnecessary renames from fremontcutbuilder. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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
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 NamedNodeMap implements sequence<Node>; 5 NamedNodeMap implements sequence<Node>;
6 NodeList implements sequence<Node>; 6 NodeList implements sequence<Node>;
7 HTMLCollection implements sequence<Node>; 7 HTMLCollection implements sequence<Node>;
8 MediaList implements sequence<DOMString>; 8 MediaList implements sequence<DOMString>;
9 StyleSheetList implements sequence<StyleSheet>; 9 StyleSheetList implements sequence<StyleSheet>;
10 TouchList implements sequence<Touch>; 10 TouchList implements sequence<Touch>;
11 CanvasPixelArray implements sequence<int>; 11 CanvasPixelArray implements sequence<int>;
12 12
13 Float32Array implements sequence<double>; 13 Float32Array implements sequence<double>;
14 Float64Array implements sequence<double>; 14 Float64Array implements sequence<double>;
15 Int8Array implements sequence<int>; 15 Int8Array implements sequence<int>;
16 Int16Array implements sequence<int>; 16 Int16Array implements sequence<int>;
17 Int32Array implements sequence<int>; 17 Int32Array implements sequence<int>;
18 Uint8Array implements sequence<int>; 18 Uint8Array implements sequence<int>;
19 Uint16Array implements sequence<int>; 19 Uint16Array implements sequence<int>;
20 Uint32Array implements sequence<int>; 20 Uint32Array implements sequence<int>;
21 21
22 // Is List<int> because inherits from Uint8Array: 22 // Is List<int> because inherits from Uint8Array:
23 // Uint8ClampedArray implements sequence<int>; 23 // Uint8ClampedArray implements sequence<int>;
24 } 24 }
25 25
26 module core { 26 module core {
27 [Supplemental] 27 [Supplemental]
28 interface Document { 28 interface Document {
29 [Suppressed] object getCSSCanvasContext(in DOMString contextId, in DOMString 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 33
34 module dom { 34 module dom {
35 // Force NodeSelector. WebKit defines these operations directly. 35 // Force NodeSelector. WebKit defines these operations directly.
36 interface NodeSelector { 36 interface NodeSelector {
37 Element querySelector(in DOMString selectors); 37 Element querySelector(in DOMString selectors);
38 NodeList querySelectorAll(in DOMString selectors); 38 NodeList querySelectorAll(in DOMString selectors);
39 }; 39 };
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 [Supplemental, Callback] // Add missing Callback attribute. 225 [Supplemental, Callback] // Add missing Callback attribute.
226 interface VoidCallback { 226 interface VoidCallback {
227 }; 227 };
228 }; 228 };
229 229
230 module svg { 230 module svg {
231 interface SVGNumber { 231 interface SVGNumber {
232 [StrictTypeChecking, Custom] attribute double value; 232 [StrictTypeChecking, Custom] attribute double value;
233 }; 233 };
234 } 234 }
OLDNEW
« no previous file with comments | « no previous file | lib/dom/scripts/fremontcutbuilder.py » ('j') | lib/dom/scripts/fremontcutbuilder.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698