2010-06-23 12:46:08 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 et sw=2 tw=80: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-06-23 12:46:08 -07:00
|
|
|
|
|
|
|
#include "nsISupports.idl"
|
|
|
|
|
2010-06-28 11:51:06 -07:00
|
|
|
interface nsIIDBObjectStore;
|
2010-06-28 09:46:49 -07:00
|
|
|
interface nsIIDBRequest;
|
2010-06-23 12:46:08 -07:00
|
|
|
interface nsIIDBTransaction;
|
2010-06-28 09:46:49 -07:00
|
|
|
interface nsIDOMDOMStringList;
|
2010-11-10 15:26:03 -08:00
|
|
|
interface nsIDOMEventListener;
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2012-03-12 21:44:48 -07:00
|
|
|
dictionary IDBObjectStoreParameters
|
2011-12-27 10:01:28 -08:00
|
|
|
{
|
2012-03-12 21:44:48 -07:00
|
|
|
jsval keyPath;
|
|
|
|
boolean autoIncrement;
|
2011-12-27 10:01:28 -08:00
|
|
|
};
|
|
|
|
|
2010-06-23 12:46:08 -07:00
|
|
|
/**
|
|
|
|
* IDBDatabase interface. See
|
2010-06-28 09:46:49 -07:00
|
|
|
* http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#idl-def-IDBDatabase
|
|
|
|
* for more information.
|
2010-06-23 12:46:08 -07:00
|
|
|
*/
|
2012-08-30 20:45:16 -07:00
|
|
|
[scriptable, builtinclass, uuid(89299bf8-e078-4ebc-abda-d97fe5618602)]
|
2010-06-23 12:46:08 -07:00
|
|
|
interface nsIIDBDatabase : nsISupports
|
|
|
|
{
|
|
|
|
readonly attribute DOMString name;
|
|
|
|
|
2011-10-20 09:10:56 -07:00
|
|
|
readonly attribute unsigned long long version;
|
2010-06-23 12:46:08 -07:00
|
|
|
|
|
|
|
readonly attribute nsIDOMDOMStringList objectStoreNames;
|
2010-06-28 09:46:49 -07:00
|
|
|
|
2010-12-21 08:02:01 -08:00
|
|
|
[implicit_jscontext]
|
2010-10-19 10:58:52 -07:00
|
|
|
nsIIDBObjectStore
|
2011-11-07 15:37:16 -08:00
|
|
|
createObjectStore([Null(Stringify)] in DOMString name,
|
2012-06-03 09:33:52 -07:00
|
|
|
/* IDBObjectStoreParameters */
|
2010-12-21 08:02:01 -08:00
|
|
|
[optional /* none */] in jsval options);
|
2010-06-28 09:46:49 -07:00
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
void
|
2011-11-07 15:37:16 -08:00
|
|
|
deleteObjectStore([Null(Stringify)] in DOMString name);
|
2010-06-28 09:46:49 -07:00
|
|
|
|
2012-03-12 21:44:45 -07:00
|
|
|
// mode can be either "readonly" or "readwrite"
|
2010-08-26 13:57:25 -07:00
|
|
|
[optional_argc, implicit_jscontext]
|
2010-06-28 09:46:49 -07:00
|
|
|
nsIIDBTransaction
|
2011-11-03 08:57:30 -07:00
|
|
|
transaction(in jsval storeNames, // js array of strings
|
2012-03-12 21:44:45 -07:00
|
|
|
[optional /* "readonly" */] in DOMString mode);
|
2010-10-19 10:58:52 -07:00
|
|
|
|
2012-06-29 09:48:34 -07:00
|
|
|
[implicit_jscontext]
|
2012-06-03 09:33:52 -07:00
|
|
|
nsIIDBRequest
|
|
|
|
mozCreateFileHandle(in DOMString name,
|
|
|
|
[optional] in DOMString type);
|
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
void
|
|
|
|
close();
|
2010-11-10 15:26:03 -08:00
|
|
|
|
2012-08-30 20:45:16 -07:00
|
|
|
[implicit_jscontext] attribute jsval onabort;
|
2011-11-23 06:15:15 -08:00
|
|
|
|
2012-08-30 20:45:16 -07:00
|
|
|
[implicit_jscontext] attribute jsval onerror;
|
2010-11-10 15:26:03 -08:00
|
|
|
|
2012-08-30 20:45:16 -07:00
|
|
|
[implicit_jscontext] attribute jsval onversionchange;
|
2010-06-23 12:46:08 -07:00
|
|
|
};
|