ax_event.mojom 541 B

12345678910111213141516171819
  1. // Copyright 2018 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. module ax.mojom;
  5. import "ui/accessibility/ax_enums.mojom";
  6. import "ui/accessibility/mojom/ax_event_intent.mojom";
  7. // See ui::AXEvent for documentation.
  8. [Stable, Uuid="2e034117-54b2-4717-bb96-c1dc002af7b4"]
  9. struct AXEvent {
  10. Event event_type;
  11. int32 id;
  12. EventFrom event_from;
  13. Action event_from_action;
  14. array<EventIntent> event_intents;
  15. int32 action_request_id;
  16. };