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

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

Issue 10334003: Rework static method support. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Introducing AddStaticOperation Created 8 years, 7 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 | « lib/dom/frog/dom_frog.dart ('k') | lib/dom/scripts/dartgenerator.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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 interface IDBIndex { 211 interface IDBIndex {
212 [DartName=getObject] IDBRequest get(in IDBKey key); 212 [DartName=getObject] IDBRequest get(in IDBKey key);
213 }; 213 };
214 [Supplemental] 214 [Supplemental]
215 interface IDBObjectStore { 215 interface IDBObjectStore {
216 [DartName=getObject] IDBRequest get(in IDBKey key); 216 [DartName=getObject] IDBRequest get(in IDBKey key);
217 [DartName=getObject] IDBRequest get(in IDBKeyRange key); 217 [DartName=getObject] IDBRequest get(in IDBKeyRange key);
218 [Suppressed] IDBRequest openCursor() raises (IDBDatabaseException); 218 [Suppressed] IDBRequest openCursor() raises (IDBDatabaseException);
219 }; 219 };
220 220
221 interface IDBKeyRange {
222 [Suppressed] static IDBKeyRange only(in IDBKey value)
223 raises (IDBDatabaseException);
224 [Suppressed] static IDBKeyRange lowerBound(in IDBKey bound, in optional bool ean open)
225 raises (IDBDatabaseException);
226 [Suppressed] static IDBKeyRange upperBound(in IDBKey bound, in optional bool ean open)
227 raises (IDBDatabaseException);
228 [Suppressed] static IDBKeyRange bound(in IDBKey lower, in IDBKey upper, in o ptional boolean lowerOpen, optional boolean upperOpen)
229 raises (IDBDatabaseException);
230 };
231
232 interface EntrySync { 221 interface EntrySync {
233 // Native implementation is declared to return EntrySync. 222 // Native implementation is declared to return EntrySync.
234 [Suppressed] DirectoryEntrySync getParent(); 223 [Suppressed] DirectoryEntrySync getParent();
235 EntrySync getParent(); 224 EntrySync getParent();
236 }; 225 };
237 }; 226 };
238 227
239 module html { 228 module html {
240 [Supplemental, Callback] // Add missing Callback attribute. 229 [Supplemental, Callback] // Add missing Callback attribute.
241 interface VoidCallback { 230 interface VoidCallback {
242 }; 231 };
243 }; 232 };
244 233
245 module svg { 234 module svg {
246 interface SVGNumber { 235 interface SVGNumber {
247 [StrictTypeChecking, Custom] attribute double value; 236 [StrictTypeChecking, Custom] attribute double value;
248 }; 237 };
249 } 238 }
OLDNEW
« no previous file with comments | « lib/dom/frog/dom_frog.dart ('k') | lib/dom/scripts/dartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698