no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / uriloader / exthandler / PExternalHelperApp.ipdl
blob1a57de7cc030596c121934bfb7636b5244dc101b
1 /* vim: set ft=cpp: */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 include protocol PBrowser;
7 include protocol PContent;
9 namespace mozilla {
10 namespace dom {
12 [ParentImpl=virtual]
13 protocol PExternalHelperApp
15   manager PContent;
17 parent:
18   async OnStartRequest(nsCString entityID);
19   async OnDataAvailable(nsCString data, uint64_t offset, uint32_t count);
20   async OnStopRequest(nsresult code);
22 child:
23   async Cancel(nsresult aStatus);
24   async __delete__();
28 } // namespace dom
29 } // namespace mozilla