2012-06-01 17:21:12 +00: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 23:21:57 +00:00
|
|
|
include protocol PBrowser;
|
2012-06-01 17:21:12 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace indexedDB {
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
protocol PIndexedDBPermissionRequest
|
2012-06-01 17:21:12 +00:00
|
|
|
{
|
2014-09-26 23:21:57 +00:00
|
|
|
manager PBrowser;
|
2012-06-01 17:21:12 +00:00
|
|
|
|
2014-09-17 23:36:01 +00:00
|
|
|
child:
|
2014-09-26 23:21:57 +00: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 17:21:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace indexedDB
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|