gecko-dev/uriloader/exthandler/HandlerServiceChild.h
Sylvestre Ledru 265e672179 Bug 1511181 - Reformat everything to the Google coding style r=ehsan a=clang-format
# ignore-this-changeset

--HG--
extra : amend_source : 4d301d3b0b8711c4692392aa76088ba7fd7d1022
2018-11-30 11:46:48 +01:00

20 lines
380 B
C++

#ifndef handler_service_child_h
#define handler_service_child_h
#include "mozilla/dom/PHandlerServiceChild.h"
namespace mozilla {
class HandlerServiceChild final : public mozilla::dom::PHandlerServiceChild {
public:
NS_INLINE_DECL_REFCOUNTING(HandlerServiceChild)
HandlerServiceChild() {}
private:
virtual ~HandlerServiceChild() {}
};
} // namespace mozilla
#endif