Bug 1728955: part 8) Refactor `DisplayErrCode` in Windows' `nsClipboard`. r=masayuki
[gecko.git] / uriloader / exthandler / PExternalHelperApp.ipdl
blob13eb6baa04494e9a2f070036ebfcaf93de346678
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 [RefCounted] protocol PExternalHelperApp
14   manager PContent;
16 parent:
17   async OnStartRequest(nsCString entityID);
18   async OnDataAvailable(nsCString data, uint64_t offset, uint32_t count);
19   async OnStopRequest(nsresult code);
21 child:
22   async Cancel(nsresult aStatus);
23   async __delete__();
27 } // namespace dom
28 } // namespace mozilla