// Copyright 2026 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. module browser_controls_api.mojom; // The event flags for an event such as a click or key down that might affect // behavior. Note: mouse button flags are only set on clicks. enum EventDispositionFlag { kUnspecified = 0, kMiddleMouseButton = 1, kAltKeyDown = 2, kMetaKeyDown = 3, // AKA Command (⌘) on Mac. kShiftKeyDown = 4, kControlKeyDown = 5, // "Alternate Graphic" key; exists in place of the right alt key in some // keyboard layouts. kAltGrKeyDown = 6, };