blob: 694592a02a92017db4ddb6c2a59d7106bf2e5c6e [file] [log] [blame]
Avi Drissmand6cdf9b2022-09-15 19:52:531// Copyright 2012 The Chromium Authors
[email protected]6760cf32012-03-29 22:02:082// 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]57999812013-02-24 05:40:528#include "base/files/file_path.h"
avic5960f32015-12-22 22:49:489#include "build/build_config.h"
[email protected]6760cf32012-03-29 22:02:0810
11namespace remoting {
12
Xiaohan Wang453b38672022-01-13 20:02:4413#if BUILDFLAG(IS_WIN)
[email protected]cfb7e0612012-03-30 23:58:5614// Windows chromoting service name.
[email protected]8cdb83f2012-06-20 17:24:4315extern const wchar_t kWindowsServiceName[];
[email protected]cfb7e0612012-03-30 23:58:5616#endif
17
[email protected]6760cf32012-03-29 22:02:0818// Returns the location of the host configuration directory.
[email protected]a3ef4832013-02-02 05:12:3319base::FilePath GetConfigDir();
[email protected]6760cf32012-03-29 22:02:0820
Joe Downingfd8a4222023-01-11 23:39:4021} // namespace remoting
[email protected]6760cf32012-03-29 22:02:0822
Joe Downingfd8a4222023-01-11 23:39:4023#endif // REMOTING_HOST_BRANDING_H_