gecko-dev/dom/quota/PQuotaUsageRequest.ipdl
Tom Tung 3b07e666f0 Bug 1281103 - Support getting the group usage and the limit in QuotaManagerService. r=janv.
--HG--
extra : rebase_source : 609795f25eeab0d96f962799629e4e81492fb087
2016-06-24 10:24:06 +08:00

38 lines
635 B
Plaintext

/* 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 UsageResponse
{
uint64_t usage;
uint64_t fileUsage;
uint64_t limit;
};
union UsageRequestResponse
{
nsresult;
UsageResponse;
};
protocol PQuotaUsageRequest
{
manager PQuota;
parent:
async Cancel();
child:
async __delete__(UsageRequestResponse response);
};
} // namespace quota
} // namespace dom
} // namespace mozilla