2015-03-02 05:20:00 -08: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 PBackground;
|
2015-04-16 12:00:15 -07:00
|
|
|
include protocol PBlob; // FIXME: bug 792908
|
2015-03-02 05:20:00 -08:00
|
|
|
include protocol PCache;
|
2015-04-16 12:00:15 -07:00
|
|
|
include protocol PCacheOp;
|
2015-08-02 13:59:33 -07:00
|
|
|
include protocol PCachePushStream;
|
2015-04-16 12:00:15 -07:00
|
|
|
include protocol PCacheStreamControl;
|
2015-03-02 05:20:00 -08:00
|
|
|
include protocol PFileDescriptorSet;
|
|
|
|
|
2015-04-16 12:00:15 -07:00
|
|
|
include CacheTypes;
|
2015-04-13 15:18:19 -07:00
|
|
|
|
2015-03-02 05:20:00 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace cache {
|
|
|
|
|
|
|
|
protocol PCacheStorage
|
|
|
|
{
|
|
|
|
manager PBackground;
|
2015-04-16 12:00:15 -07:00
|
|
|
manages PCacheOp;
|
2015-03-02 05:20:00 -08:00
|
|
|
|
|
|
|
parent:
|
2015-04-16 12:00:15 -07:00
|
|
|
PCacheOp(CacheOpArgs aOpArgs);
|
2015-03-02 05:20:00 -08:00
|
|
|
Teardown();
|
|
|
|
|
|
|
|
child:
|
|
|
|
__delete__();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace cache
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|