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

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

Issue 10206017: Do not use overloaded toDartValue for bindings classes. (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
« no previous file with comments | « no previous file | lib/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 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>;
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
223 interface IDBKeyRange { 223 interface IDBKeyRange {
224 [Suppressed] static IDBKeyRange only(in IDBKey value) 224 [Suppressed] static IDBKeyRange only(in IDBKey value)
225 raises (IDBDatabaseException); 225 raises (IDBDatabaseException);
226 [Suppressed] static IDBKeyRange lowerBound(in IDBKey bound, in optional bool ean open) 226 [Suppressed] static IDBKeyRange lowerBound(in IDBKey bound, in optional bool ean open)
227 raises (IDBDatabaseException); 227 raises (IDBDatabaseException);
228 [Suppressed] static IDBKeyRange upperBound(in IDBKey bound, in optional bool ean open) 228 [Suppressed] static IDBKeyRange upperBound(in IDBKey bound, in optional bool ean open)
229 raises (IDBDatabaseException); 229 raises (IDBDatabaseException);
230 [Suppressed] static IDBKeyRange bound(in IDBKey lower, in IDBKey upper, in o ptional boolean lowerOpen, optional boolean upperOpen) 230 [Suppressed] static IDBKeyRange bound(in IDBKey lower, in IDBKey upper, in o ptional boolean lowerOpen, optional boolean upperOpen)
231 raises (IDBDatabaseException); 231 raises (IDBDatabaseException);
232 }; 232 };
233
234 interface EntrySync {
235 // Native implementation is declared to return EntrySync.
236 [Suppressed] DirectoryEntrySync getParent();
237 EntrySync getParent();
238 };
233 }; 239 };
234 240
235 module html { 241 module html {
236 [Supplemental, Callback] // Add missing Callback attribute. 242 [Supplemental, Callback] // Add missing Callback attribute.
237 interface VoidCallback { 243 interface VoidCallback {
238 }; 244 };
239 }; 245 };
240 246
241 module svg { 247 module svg {
242 interface SVGNumber { 248 interface SVGNumber {
243 [StrictTypeChecking, Custom] attribute double value; 249 [StrictTypeChecking, Custom] attribute double value;
244 }; 250 };
245 } 251 }
OLDNEW
« no previous file with comments | « no previous file | lib/dom/scripts/generator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698