host_setting_keys.h 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. // Copyright 2021 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. #ifndef REMOTING_HOST_HOST_SETTING_KEYS_H_
  5. #define REMOTING_HOST_HOST_SETTING_KEYS_H_
  6. #include "remoting/base/host_settings.h"
  7. namespace remoting {
  8. // If setting is provided, the Mac host will capture audio from the audio device
  9. // specified by the UID and stream it to the client. See AudioCapturerMac for
  10. // more information.
  11. constexpr HostSettingKey kMacAudioCaptureDeviceUid = "audio_capture_device_uid";
  12. constexpr HostSettingKey kLinuxPreviousDefaultWebBrowserXfce =
  13. "previous_default_browser_xfce";
  14. constexpr HostSettingKey kLinuxPreviousDefaultWebBrowserCinnamon =
  15. "previous_default_browser_cinnamon";
  16. constexpr HostSettingKey kLinuxPreviousDefaultWebBrowserGnome =
  17. "previous_default_browser_gnome";
  18. constexpr HostSettingKey kLinuxPreviousDefaultWebBrowserGeneric =
  19. "previous_default_browser_generic";
  20. } // namespace remoting
  21. #endif // REMOTING_HOST_HOST_SETTING_KEYS_H_