Bug 1888590 - Mark some subtests on trusted-types-event-handlers.html as failing...
[gecko.git] / uriloader / exthandler / HandlerServiceChild.h
blob5c58a3c230894751bbe32e96707538f72f8c38fc
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef handler_service_child_h
8 #define handler_service_child_h
10 #include "mozilla/dom/PHandlerServiceChild.h"
12 namespace mozilla {
14 class HandlerServiceChild final : public mozilla::dom::PHandlerServiceChild {
15 public:
16 NS_INLINE_DECL_REFCOUNTING(HandlerServiceChild, final)
17 HandlerServiceChild() {}
19 private:
20 virtual ~HandlerServiceChild() {}
23 } // namespace mozilla
25 #endif