Avi Drissman | d6cdf9b | 2022-09-15 19:52:53 | [diff] [blame] | 1 | // Copyright 2012 The Chromium Authors |
[email protected] | 6760cf3 | 2012-03-29 22:02:08 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
5 | #ifndef REMOTING_HOST_BRANDING_H_ | ||||
6 | #define REMOTING_HOST_BRANDING_H_ | ||||
7 | |||||
[email protected] | 5799981 | 2013-02-24 05:40:52 | [diff] [blame] | 8 | #include "base/files/file_path.h" |
avi | c5960f3 | 2015-12-22 22:49:48 | [diff] [blame] | 9 | #include "build/build_config.h" |
[email protected] | 6760cf3 | 2012-03-29 22:02:08 | [diff] [blame] | 10 | |
11 | namespace remoting { | ||||
12 | |||||
Xiaohan Wang | 453b3867 | 2022-01-13 20:02:44 | [diff] [blame] | 13 | #if BUILDFLAG(IS_WIN) |
[email protected] | cfb7e061 | 2012-03-30 23:58:56 | [diff] [blame] | 14 | // Windows chromoting service name. |
[email protected] | 8cdb83f | 2012-06-20 17:24:43 | [diff] [blame] | 15 | extern const wchar_t kWindowsServiceName[]; |
[email protected] | cfb7e061 | 2012-03-30 23:58:56 | [diff] [blame] | 16 | #endif |
17 | |||||
[email protected] | 6760cf3 | 2012-03-29 22:02:08 | [diff] [blame] | 18 | // Returns the location of the host configuration directory. |
[email protected] | a3ef483 | 2013-02-02 05:12:33 | [diff] [blame] | 19 | base::FilePath GetConfigDir(); |
[email protected] | 6760cf3 | 2012-03-29 22:02:08 | [diff] [blame] | 20 | |
Joe Downing | fd8a422 | 2023-01-11 23:39:40 | [diff] [blame] | 21 | } // namespace remoting |
[email protected] | 6760cf3 | 2012-03-29 22:02:08 | [diff] [blame] | 22 | |
Joe Downing | fd8a422 | 2023-01-11 23:39:40 | [diff] [blame] | 23 | #endif // REMOTING_HOST_BRANDING_H_ |