#ifndef CHROME_BROWSER_ASH_EVENTS_SHORTCUT_MAPPING_PREF_SERVICE_H_
#define CHROME_BROWSER_ASH_EVENTS_SHORTCUT_MAPPING_PREF_SERVICE_H_
#include "base/memory/raw_ref.h"
#include "ui/base/shortcut_mapping_pref_delegate.h"
class PrefService;
namespace ash {
class ShortcutMappingPrefService : public ui::ShortcutMappingPrefDelegate {
public:
explicit ShortcutMappingPrefService(PrefService& local_state);
ShortcutMappingPrefService(const ShortcutMappingPrefService&) = delete;
ShortcutMappingPrefService operator=(const ShortcutMappingPrefService&) =
delete;
~ShortcutMappingPrefService() override;
bool IsDeviceEnterpriseManaged() const override;
bool IsI18nShortcutPrefEnabled() const override;
private:
const raw_ref<PrefService> local_state_;
};
}
#endif