Backed out changeset b06f19b95b94 (bug 1784438) for causing build bustages CLOSED...
[gecko.git] / toolkit / components / remote / nsRemoteServer.h
blob7c24bdce7111d9bcad7313165cd643e2dde6f4ef
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim:expandtab:shiftwidth=2:tabstop=2:
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 __nsRemoteServer_h__
9 #define __nsRemoteServer_h__
11 #include "nsString.h"
13 class nsRemoteServer {
14 public:
15 virtual ~nsRemoteServer() = default;
17 virtual nsresult Startup(const char* aAppName, const char* aProfileName) = 0;
18 virtual void Shutdown() = 0;
21 #endif // __nsRemoteServer_h__