| // 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 CHROME_BROWSER_ASH_SHORTCUT_MAPPING_PREF_SERVICE_H_ |
| #define CHROME_BROWSER_ASH_SHORTCUT_MAPPING_PREF_SERVICE_H_ |
| |
| #include "ui/base/shortcut_mapping_pref_delegate.h" |
| |
| namespace ash { |
| |
| // TODO(crbug/1264581): Remove this class once kDeviceI18nShortcutsEnabled |
| // policy is deprecated. |
| class ShortcutMappingPrefService : public ui::ShortcutMappingPrefDelegate { |
| public: |
| ShortcutMappingPrefService(); |
| ShortcutMappingPrefService(const ShortcutMappingPrefService&) = delete; |
| ShortcutMappingPrefService operator=(const ShortcutMappingPrefService&) = |
| delete; |
| ~ShortcutMappingPrefService() override; |
| |
| // ShortcutMappingPrefDelegate: |
| bool IsDeviceEnterpriseManaged() const override; |
| bool IsI18nShortcutPrefEnabled() const override; |
| }; |
| |
| } // namespace ash |
| |
| #endif // CHROME_BROWSER_ASH_SHORTCUT_MAPPING_PREF_SERVICE_H_ |