disks_prefs.h 629 B

1234567891011121314151617181920
  1. // Copyright 2022 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 CHROMEOS_COMPONENTS_DISKS_DISKS_PREFS_H_
  5. #define CHROMEOS_COMPONENTS_DISKS_DISKS_PREFS_H_
  6. class PrefRegistrySimple;
  7. namespace disks::prefs {
  8. extern const char kExternalStorageDisabled[];
  9. extern const char kExternalStorageReadOnly[];
  10. // Registers external storage specific profile preferences for browser prefs.
  11. void RegisterProfilePrefs(PrefRegistrySimple* registry);
  12. } // namespace disks::prefs
  13. #endif // CHROMEOS_COMPONENTS_DISKS_DISKS_PREFS_H_