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

Unified Diff: Source/modules/indexeddb/IDBDatabase.idl

Issue 1155883005: IndexedDB: Add draft/proposal links for some experimental APIs in IDLs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/indexeddb/IDBCursor.idl ('k') | Source/modules/indexeddb/IDBIndex.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/indexeddb/IDBDatabase.idl
diff --git a/Source/modules/indexeddb/IDBDatabase.idl b/Source/modules/indexeddb/IDBDatabase.idl
index ff543a87139cc9df49c011bc228d53696acf5de3..2e4d2b2414cdaff8c839f5835d50cd3a213e366f 100644
--- a/Source/modules/indexeddb/IDBDatabase.idl
+++ b/Source/modules/indexeddb/IDBDatabase.idl
@@ -24,7 +24,7 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-// http://www.w3.org/TR/IndexedDB/#idl-def-IDBDatabase
+// https://w3c.github.io/IndexedDB/#idl-def-IDBDatabase
[
Exposed=(Window,Worker),
@@ -32,13 +32,15 @@
GarbageCollected,
] interface IDBDatabase : EventTarget {
readonly attribute DOMString name;
- // DOMString version is non-standard, to support databases created with old API.
+ // TODO(jsbell): DOMString version is non-standard, to support databases created with old API.
readonly attribute (unsigned long long or DOMString) version;
readonly attribute DOMStringList objectStoreNames;
+
[RaisesException] IDBObjectStore createObjectStore(DOMString name, optional IDBObjectStoreParameters options);
[RaisesException] void deleteObjectStore(DOMString name);
[CallWith=ScriptState, RaisesException] IDBTransaction transaction((DOMString or sequence<DOMString> or DOMStringList) storeNames, optional IDBTransactionMode mode = "readonly");
void close();
+
attribute EventHandler onabort;
attribute EventHandler onclose;
attribute EventHandler onerror;
« no previous file with comments | « Source/modules/indexeddb/IDBCursor.idl ('k') | Source/modules/indexeddb/IDBIndex.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698