#ifndef UI_BASE_SHORTCUT_MAPPING_PREF_DELEGATE_H_
#define UI_BASE_SHORTCUT_MAPPING_PREF_DELEGATE_H_
#include "base/component_export.h"
namespace ui {
class COMPONENT_EXPORT(UI_BASE_FEATURES) ShortcutMappingPrefDelegate {
public:
static ShortcutMappingPrefDelegate* GetInstance();
static bool IsInitialized();
ShortcutMappingPrefDelegate();
virtual ~ShortcutMappingPrefDelegate();
virtual bool IsDeviceEnterpriseManaged() const = 0;
virtual bool IsI18nShortcutPrefEnabled() const = 0;
private:
static ShortcutMappingPrefDelegate* instance_;
};
}
#endif