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
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
#include "nsISupports.idl"
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
interface nsIDOMEventListener;
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2010-10-19 10:58:52 -07:00
|
|
|
/**
|
2011-10-20 09:10:56 -07:00
|
|
|
* IDBOpenDBRequest interface. See
|
|
|
|
* http://dvcs.w3.org/hg/IndexedDB/raw-file/tip/Overview.html#idl-def-IDBOpenDBRequest
|
|
|
|
* for more information.
|
2010-10-19 10:58:52 -07:00
|
|
|
*/
|
2012-08-30 20:45:16 -07:00
|
|
|
[scriptable, builtinclass, uuid(2d6c5ef4-b84a-45ae-9030-eb6cfc65bb26)]
|
2011-10-20 09:10:56 -07:00
|
|
|
interface nsIIDBOpenDBRequest : nsISupports
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
2012-08-30 20:45:16 -07:00
|
|
|
[implicit_jscontext] attribute jsval onblocked;
|
|
|
|
[implicit_jscontext] attribute jsval onupgradeneeded;
|
2010-06-23 12:46:08 -07:00
|
|
|
};
|