2012-06-01 10:21:12 -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/. */
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
include protocol PBrowser;
|
2012-06-01 10:21:12 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace indexedDB {
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
protocol PIndexedDBPermissionRequest
|
2012-06-01 10:21:12 -07:00
|
|
|
{
|
2014-09-26 16:21:57 -07:00
|
|
|
manager PBrowser;
|
2012-06-01 10:21:12 -07:00
|
|
|
|
2014-09-17 16:36:01 -07:00
|
|
|
child:
|
2014-09-26 16:21:57 -07:00
|
|
|
/**
|
|
|
|
* Called when the user makes a choice or the permission request times out.
|
|
|
|
*
|
|
|
|
* @param permission
|
|
|
|
* The permission result (see nsIPermissionManager.idl for valid values).
|
|
|
|
*/
|
|
|
|
__delete__(uint32_t permission);
|
2012-06-01 10:21:12 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace indexedDB
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|