// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_ACCESSIBILITY_AX_EVENT_INTENT_H_ #define UI_ACCESSIBILITY_AX_EVENT_INTENT_H_ #include <string> #include "ui/accessibility/ax_base_export.h" #include "ui/accessibility/ax_enums.mojom.h" namespace ui { // Describes what caused an accessibility event to be raised. For example, a // character could have been typed, a word replaced, or a line deleted. Or, the // selection could have been extended to the beginning of the previous word, or // it could have been moved to the end of the next line. struct AX_BASE_EXPORT AXEventIntent final { … }; } // namespace ui #endif // UI_ACCESSIBILITY_AX_EVENT_INTENT_H_