blob: 3d8071562edff870fb25b936bc71d5eeb97498de [file] [log] [blame]
[email protected]fe3d8432012-10-12 21:07:121// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]387a0722012-11-20 09:00:425#ifndef REMOTING_HOST_IPC_CONSTANTS_H_
6#define REMOTING_HOST_IPC_CONSTANTS_H_
[email protected]fe3d8432012-10-12 21:07:127
[email protected]57999812013-02-24 05:40:528#include "base/files/file_path.h"
[email protected]fe3d8432012-10-12 21:07:129
10namespace remoting {
11
12// The command line switch specifying the daemon IPC endpoint.
13extern const char kDaemonPipeSwitchName[];
14
[email protected]fe3d8432012-10-12 21:07:1215// Name of the host process binary.
[email protected]a3ef4832013-02-02 05:12:3316extern const base::FilePath::CharType kHostBinaryName[];
[email protected]fe3d8432012-10-12 21:07:1217
[email protected]9410c0a2013-02-23 06:07:2118// Name of the desktop process binary.
19extern const base::FilePath::CharType kDesktopBinaryName[];
20
[email protected]fe3d8432012-10-12 21:07:1221// Returns the full path to an installed |binary| in |full_path|.
[email protected]a3ef4832013-02-02 05:12:3322bool GetInstalledBinaryPath(const base::FilePath::StringType& binary,
23 base::FilePath* full_path);
[email protected]fe3d8432012-10-12 21:07:1224
25} // namespace remoting
26
[email protected]387a0722012-11-20 09:00:4227#endif // REMOTING_HOST_IPC_CONSTANTS_H_