gecko-dev/dom/localstorage/PBackgroundLSSimpleRequest....

31 строка
591 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 PBackground;
namespace mozilla {
namespace dom {
struct LSSimpleRequestPreloadedResponse
{
bool preloaded;
};
union LSSimpleRequestResponse
{
nsresult;
LSSimpleRequestPreloadedResponse;
};
protocol PBackgroundLSSimpleRequest
{
manager PBackground;
child:
async __delete__(LSSimpleRequestResponse response);
};
} // namespace dom
} // namespace mozilla