[email protected] | fe3d843 | 2012-10-12 21:07:12 | [diff] [blame] | 1 | // 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] | 387a072 | 2012-11-20 09:00:42 | [diff] [blame] | 5 | #ifndef REMOTING_HOST_IPC_CONSTANTS_H_ |
6 | #define REMOTING_HOST_IPC_CONSTANTS_H_ | ||||
[email protected] | fe3d843 | 2012-10-12 21:07:12 | [diff] [blame] | 7 | |
[email protected] | 5799981 | 2013-02-24 05:40:52 | [diff] [blame^] | 8 | #include "base/files/file_path.h" |
[email protected] | fe3d843 | 2012-10-12 21:07:12 | [diff] [blame] | 9 | |
10 | namespace remoting { | ||||
11 | |||||
12 | // The command line switch specifying the daemon IPC endpoint. | ||||
13 | extern const char kDaemonPipeSwitchName[]; | ||||
14 | |||||
[email protected] | fe3d843 | 2012-10-12 21:07:12 | [diff] [blame] | 15 | // Name of the host process binary. |
[email protected] | a3ef483 | 2013-02-02 05:12:33 | [diff] [blame] | 16 | extern const base::FilePath::CharType kHostBinaryName[]; |
[email protected] | fe3d843 | 2012-10-12 21:07:12 | [diff] [blame] | 17 | |
[email protected] | 9410c0a | 2013-02-23 06:07:21 | [diff] [blame] | 18 | // Name of the desktop process binary. |
19 | extern const base::FilePath::CharType kDesktopBinaryName[]; | ||||
20 | |||||
[email protected] | fe3d843 | 2012-10-12 21:07:12 | [diff] [blame] | 21 | // Returns the full path to an installed |binary| in |full_path|. |
[email protected] | a3ef483 | 2013-02-02 05:12:33 | [diff] [blame] | 22 | bool GetInstalledBinaryPath(const base::FilePath::StringType& binary, |
23 | base::FilePath* full_path); | ||||
[email protected] | fe3d843 | 2012-10-12 21:07:12 | [diff] [blame] | 24 | |
25 | } // namespace remoting | ||||
26 | |||||
[email protected] | 387a072 | 2012-11-20 09:00:42 | [diff] [blame] | 27 | #endif // REMOTING_HOST_IPC_CONSTANTS_H_ |