2012-05-21 15:12:37 +04: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-08-18 07:19:24 +04:00
|
|
|
|
2010-09-16 02:55:08 +04:00
|
|
|
include protocol PContent;
|
2010-08-18 07:19:24 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
protocol PExternalHelperApp
|
|
|
|
{
|
2010-09-16 02:55:08 +04:00
|
|
|
manager PContent;
|
2010-08-18 07:19:24 +04:00
|
|
|
|
|
|
|
parent:
|
2010-08-23 20:29:33 +04:00
|
|
|
OnStartRequest(nsCString entityID);
|
2012-09-06 06:41:02 +04:00
|
|
|
OnDataAvailable(nsCString data, uint64_t offset, uint32_t count);
|
2010-08-18 07:19:24 +04:00
|
|
|
OnStopRequest(nsresult code);
|
|
|
|
|
|
|
|
child:
|
|
|
|
Cancel(nsresult aStatus);
|
|
|
|
__delete__();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|