forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
HandlerServiceParent.h
31 lines (22 loc) · 1.02 KB
/
HandlerServiceParent.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef handler_service_parent_h
#define handler_service_parent_h
#include "mozilla/dom/PHandlerServiceParent.h"
#include "nsIMIMEInfo.h"
class nsIHandlerApp;
class HandlerServiceParent final : public mozilla::dom::PHandlerServiceParent
{
public:
HandlerServiceParent();
NS_INLINE_DECL_REFCOUNTING(HandlerServiceParent)
private:
virtual ~HandlerServiceParent();
virtual void ActorDestroy(ActorDestroyReason aWhy) override;
virtual mozilla::ipc::IPCResult RecvFillHandlerInfo(const HandlerInfo& aHandlerInfoData,
const nsCString& aOverrideType,
HandlerInfo* handlerInfoData) override;
virtual mozilla::ipc::IPCResult RecvExists(const HandlerInfo& aHandlerInfo,
bool* exits) override;
virtual mozilla::ipc::IPCResult RecvGetTypeFromExtension(const nsCString& aFileExtension,
nsCString* type) override;
};
#endif