UtilityProcessTest.h (885B)
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/. */ 6 #ifndef _include_ipc_glue_UtilityProcessTest_h_ 7 #define _include_ipc_glue_UtilityProcessTest_h_ 8 9 #if defined(ENABLE_TESTS) 10 # include "nsServiceManagerUtils.h" 11 # include "nsIUtilityProcessTest.h" 12 13 namespace mozilla::ipc { 14 15 class UtilityProcessTest final : public nsIUtilityProcessTest { 16 public: 17 NS_DECL_THREADSAFE_ISUPPORTS 18 NS_DECL_NSIUTILITYPROCESSTEST 19 20 UtilityProcessTest() = default; 21 22 private: 23 ~UtilityProcessTest() = default; 24 }; 25 26 } // namespace mozilla::ipc 27 #endif // defined(ENABLE_TESTS) 28 29 #endif // _include_ipc_glue_UtilityProcessTest_h_