| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 | 35 |
| 36 [ | 36 [ |
| 37 GarbageCollected, | 37 GarbageCollected, |
| 38 ] interface IDBObjectStore { | 38 ] interface IDBObjectStore { |
| 39 readonly attribute DOMString? name; | 39 readonly attribute DOMString? name; |
| 40 [CallWith=ScriptState] readonly attribute any keyPath; | 40 [CallWith=ScriptState] readonly attribute any keyPath; |
| 41 readonly attribute DOMStringList indexNames; | 41 readonly attribute DOMStringList indexNames; |
| 42 readonly attribute IDBTransaction transaction; | 42 readonly attribute IDBTransaction transaction; |
| 43 readonly attribute boolean autoIncrement; | 43 readonly attribute boolean autoIncrement; |
| 44 | 44 |
| 45 [CallWith=ScriptState, RaisesException] IDBRequest put(any value, [Default=U
ndefined] optional any key); | 45 [CallWith=ScriptState, RaisesException] IDBRequest put(any value, optional a
ny key); |
| 46 [CallWith=ScriptState, RaisesException] IDBRequest add(any value, [Default=U
ndefined] optional any key); | 46 [CallWith=ScriptState, RaisesException] IDBRequest add(any value, optional a
ny key); |
| 47 [CallWith=ScriptState, ImplementedAs=deleteFunction, RaisesException] IDBReq
uest delete(any key); | 47 [CallWith=ScriptState, ImplementedAs=deleteFunction, RaisesException] IDBReq
uest delete(any key); |
| 48 [CallWith=ScriptState, RaisesException] IDBRequest get(any key); | 48 [CallWith=ScriptState, RaisesException] IDBRequest get(any key); |
| 49 [CallWith=ScriptState, RaisesException] IDBRequest clear(); | 49 [CallWith=ScriptState, RaisesException] IDBRequest clear(); |
| 50 [CallWith=ScriptState, RaisesException] IDBRequest openCursor([Default=Undef
ined] optional any range, optional DOMString direction = "next"); | 50 [CallWith=ScriptState, RaisesException] IDBRequest openCursor(optional any r
ange, optional DOMString direction = "next"); |
| 51 [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental
] IDBRequest openKeyCursor([Default=Undefined] optional any range, optional IDBC
ursorDirection direction = "next"); | 51 [CallWith=ScriptState, RaisesException, RuntimeEnabled=IndexedDBExperimental
] IDBRequest openKeyCursor(optional any range, optional IDBCursorDirection direc
tion = "next"); |
| 52 // FIXME: should be union type http://crbug.com/240176 | 52 // FIXME: should be union type http://crbug.com/240176 |
| 53 [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name,
DOMString keyPath, optional Dictionary options); | 53 [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name,
DOMString keyPath, optional Dictionary options); |
| 54 [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name,
sequence<DOMString> keyPath, optional Dictionary options); | 54 [CallWith=ScriptState, RaisesException] IDBIndex createIndex(DOMString name,
sequence<DOMString> keyPath, optional Dictionary options); |
| 55 [RaisesException] IDBIndex index(DOMString name); | 55 [RaisesException] IDBIndex index(DOMString name); |
| 56 [RaisesException] void deleteIndex(DOMString name); | 56 [RaisesException] void deleteIndex(DOMString name); |
| 57 [CallWith=ScriptState, RaisesException] IDBRequest count([Default=Undefined]
optional any key); | 57 [CallWith=ScriptState, RaisesException] IDBRequest count(optional any key); |
| 58 }; | 58 }; |
| OLD | NEW |