mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +09:00
15 lines
333 B
C
15 lines
333 B
C
|
|
#ifndef handler_service_child_h
|
||
|
|
#define handler_service_child_h
|
||
|
|
|
||
|
|
#include "mozilla/dom/PHandlerServiceChild.h"
|
||
|
|
|
||
|
|
class HandlerServiceChild final : public mozilla::dom::PHandlerServiceChild
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
NS_INLINE_DECL_REFCOUNTING(HandlerServiceChild)
|
||
|
|
HandlerServiceChild() {}
|
||
|
|
private:
|
||
|
|
virtual ~HandlerServiceChild() {}
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|