2015-11-22 12:43:55 +03: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/. */
|
|
|
|
|
|
|
|
include protocol PQuota;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace quota {
|
|
|
|
|
|
|
|
struct ClearOriginResponse
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
2016-06-05 22:42:48 +03:00
|
|
|
struct ClearOriginsResponse
|
2015-11-22 12:43:55 +03:00
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ClearAllResponse
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ResetAllResponse
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
union RequestResponse
|
|
|
|
{
|
|
|
|
nsresult;
|
|
|
|
ClearOriginResponse;
|
2016-06-05 22:42:48 +03:00
|
|
|
ClearOriginsResponse;
|
2015-11-22 12:43:55 +03:00
|
|
|
ClearAllResponse;
|
|
|
|
ResetAllResponse;
|
|
|
|
};
|
|
|
|
|
|
|
|
protocol PQuotaRequest
|
|
|
|
{
|
|
|
|
manager PQuota;
|
|
|
|
|
|
|
|
child:
|
2016-01-27 00:51:53 +03:00
|
|
|
async __delete__(RequestResponse response);
|
2015-11-22 12:43:55 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace quota
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|