#ifndef ASH_ACCELERATORS_SYSTEM_SHORTCUT_BEHAVIOR_POLICY_H_
#define ASH_ACCELERATORS_SYSTEM_SHORTCUT_BEHAVIOR_POLICY_H_
#include "ash/constants/ash_pref_names.h"
#include "ash/shell.h"
#include "components/prefs/pref_registry_simple.h"
#include "components/prefs/pref_service.h"
namespace ash {
enum class SystemShortcutBehaviorType {
kNormalShortcutBehavior = 0,
kMinValue = kNormalShortcutBehavior,
kIgnoreCommonVdiShortcuts = 1,
kIgnoreCommonVdiShortcutsFullscreenOnly = 2,
kAllowSearchBasedPassthrough = 3,
kAllowSearchBasedPassthroughFullscreenOnly = 4,
kMaxValue = kAllowSearchBasedPassthroughFullscreenOnly,
};
void RegisterSystemShortcutBehaviorProfilePrefs(PrefRegistrySimple* registry);
SystemShortcutBehaviorType GetSystemShortcutBehavior();
}
#endif