mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
16 lines
333 B
C++
16 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
|