Bug 1735252 [wpt PR 31197] - Regenerate WPT certificates, a=testonly
[gecko.git] / toolkit / components / remote / nsMacRemoteClient.h
blob71bf8e7f5510a9adf924b886696874b8a18d25c0
1 /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:expandtab:shiftwidth=4:tabstop=4:
3 */
4 /* This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 #ifndef TOOLKIT_COMPONENTS_REMOTE_NSMACREMOTECLIENT_H_
9 #define TOOLKIT_COMPONENTS_REMOTE_NSMACREMOTECLIENT_H_
11 #import <CoreFoundation/CoreFoundation.h>
13 #include "nscore.h"
14 #include "nsRemoteClient.h"
16 class nsMacRemoteClient : public nsRemoteClient {
17 public:
18 virtual ~nsMacRemoteClient() = default;
20 nsresult Init() override;
22 nsresult SendCommandLine(const char* aProgram, const char* aProfile,
23 int32_t argc, char** argv,
24 const char* aDesktopStartupID, char** aResponse,
25 bool* aSucceeded) override;
28 #endif // TOOLKIT_COMPONENTS_REMOTE_NSMACREMOTECLIENT_H_