file_host_settings_mac.cc 614 B

1234567891011121314151617181920
  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. #include "remoting/base/file_host_settings.h"
  5. namespace remoting {
  6. namespace {
  7. // Note: If this path is changed, also update the value set in:
  8. // //remoting/host/mac/constants_mac.cc
  9. const char kHostSettingsFilePath[] =
  10. "/Library/PrivilegedHelperTools/org.chromium.chromoting.settings.json";
  11. } // namespace
  12. base::FilePath FileHostSettings::GetSettingsFilePath() {
  13. return base::FilePath(kHostSettingsFilePath);
  14. }
  15. } // namespace remoting