2015-03-02 16:20:00 +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 PBackground;
|
|
|
|
include protocol PCache;
|
2015-04-15 03:11:19 +03:00
|
|
|
include protocol PCacheOp;
|
2015-04-15 10:54:48 +03:00
|
|
|
include PCacheTypes;
|
2015-03-02 16:20:00 +03:00
|
|
|
include protocol PFileDescriptorSet;
|
|
|
|
|
2015-04-15 10:54:48 +03:00
|
|
|
include protocol PBlob; // FIXME: bug 792908
|
|
|
|
include protocol PCacheStreamControl;
|
2015-04-14 01:18:19 +03:00
|
|
|
|
2015-03-02 16:20:00 +03:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace cache {
|
|
|
|
|
|
|
|
protocol PCacheStorage
|
|
|
|
{
|
|
|
|
manager PBackground;
|
2015-04-15 03:11:19 +03:00
|
|
|
manages PCacheOp;
|
2015-03-02 16:20:00 +03:00
|
|
|
|
|
|
|
parent:
|
2015-04-15 03:11:19 +03:00
|
|
|
PCacheOp(CacheOpArgs aOpArgs);
|
2015-03-02 16:20:00 +03:00
|
|
|
Teardown();
|
|
|
|
|
|
|
|
child:
|
|
|
|
__delete__();
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace cache
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|