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
|
|
|
*/
|
2011-11-03 08:57:30 -07:00
|
|
|
[scriptable, builtinclass, uuid(91010fbe-1dfb-435d-852e-288d2804c0a7)]
|
2011-10-20 09:10:56 -07:00
|
|
|
interface nsIIDBOpenDBRequest : nsISupports
|
2010-06-23 12:46:08 -07:00
|
|
|
{
|
2010-10-19 10:58:52 -07:00
|
|
|
attribute nsIDOMEventListener onblocked;
|
2011-10-20 09:10:56 -07:00
|
|
|
attribute nsIDOMEventListener onupgradeneeded;
|
2010-06-23 12:46:08 -07:00
|
|
|
};
|