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

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

Issue 10151002: Revert "Revert "Revert "Revert "Constructors for IDBKeyRange"""" (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 | « lib/dom/frog/dom_frog.dart ('k') | lib/dom/src/dummy_FactoryProviders.dart » ('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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 [DartName=continueFunction] void continue(in optional IDBKey key); 212 [DartName=continueFunction] void continue(in optional IDBKey key);
213 }; 213 };
214 [Supplemental] 214 [Supplemental]
215 interface IDBIndex { 215 interface IDBIndex {
216 [DartName=getObject] IDBRequest get(in IDBKey key); 216 [DartName=getObject] IDBRequest get(in IDBKey key);
217 }; 217 };
218 [Supplemental] 218 [Supplemental]
219 interface IDBObjectStore { 219 interface IDBObjectStore {
220 [DartName=getObject] IDBRequest get(in IDBKey key); 220 [DartName=getObject] IDBRequest get(in IDBKey key);
221 }; 221 };
222
223 interface IDBKeyRange {
224 [Suppressed] static IDBKeyRange only(in IDBKey value)
225 raises (IDBDatabaseException);
226 [Suppressed] static IDBKeyRange lowerBound(in IDBKey bound, in optional bool ean open)
227 raises (IDBDatabaseException);
228 [Suppressed] static IDBKeyRange upperBound(in IDBKey bound, in optional bool ean open)
229 raises (IDBDatabaseException);
230 [Suppressed] static IDBKeyRange bound(in IDBKey lower, in IDBKey upper, in o ptional boolean lowerOpen, optional boolean upperOpen)
231 raises (IDBDatabaseException);
232 };
222 }; 233 };
223 234
224 module html { 235 module html {
225 [Supplemental, Callback] // Add missing Callback attribute. 236 [Supplemental, Callback] // Add missing Callback attribute.
226 interface VoidCallback { 237 interface VoidCallback {
227 }; 238 };
228 }; 239 };
229 240
230 module svg { 241 module svg {
231 interface SVGNumber { 242 interface SVGNumber {
232 [StrictTypeChecking, Custom] attribute double value; 243 [StrictTypeChecking, Custom] attribute double value;
233 }; 244 };
234 } 245 }
OLDNEW
« no previous file with comments | « lib/dom/frog/dom_frog.dart ('k') | lib/dom/src/dummy_FactoryProviders.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698