2010-10-20 17:12:32 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set sw=2 ts=8 et tw=80 ft=cpp : */
|
|
|
|
|
2012-05-21 11:12:37 +00: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/. */
|
2010-10-20 17:12:32 +00:00
|
|
|
|
2014-11-13 00:31:00 +00:00
|
|
|
include protocol PContent;
|
2010-10-20 17:12:32 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace docshell {
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------
|
|
|
|
protocol POfflineCacheUpdate
|
|
|
|
{
|
2014-11-13 00:31:00 +00:00
|
|
|
manager PContent;
|
2010-10-20 17:12:32 +00:00
|
|
|
|
|
|
|
parent:
|
|
|
|
__delete__();
|
|
|
|
|
|
|
|
child:
|
2012-08-22 15:56:38 +00:00
|
|
|
NotifyStateEvent(uint32_t stateEvent, uint64_t byteProgress);
|
2010-10-20 17:12:32 +00:00
|
|
|
AssociateDocuments(nsCString cacheGroupId, nsCString cacheClientId);
|
2014-01-15 20:20:33 +00:00
|
|
|
Finish(bool succeeded, bool isUpgrade);
|
2010-10-20 17:12:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|