// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_HOST_HOST_SETTING_KEYS_H_ #define REMOTING_HOST_HOST_SETTING_KEYS_H_ #include "remoting/base/host_settings.h" namespace remoting { // If setting is provided, the Mac host will capture audio from the audio device // specified by the UID and stream it to the client. See AudioCapturerMac for // more information. constexpr HostSettingKey kMacAudioCaptureDeviceUid = …; constexpr HostSettingKey kLinuxPreviousDefaultWebBrowserXfce = …; constexpr HostSettingKey kLinuxPreviousDefaultWebBrowserCinnamon = …; constexpr HostSettingKey kLinuxPreviousDefaultWebBrowserGnome = …; constexpr HostSettingKey kLinuxPreviousDefaultWebBrowserGeneric = …; } // namespace remoting #endif // REMOTING_HOST_HOST_SETTING_KEYS_H_