chromium/ui/events/ash/mojom/six_pack_shortcut_modifier.mojom

// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module ui.mojom;

// The modifier used when remapping a key event to a 6-pack key
// (e.g. Alt+Up -> PageUp, Search+Down -> PageDown).
// Note: The ordering of values in this enum must not change as the values are
// saved to prefs.
enum SixPackShortcutModifier {
  kNone = 0,
  kAlt = 1,
  kSearch = 2,
};