ax_tree_id.mojom 582 B

123456789101112131415161718
  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 "mojo/public/mojom/base/unguessable_token.mojom";
  7. // Next version: 1
  8. [Stable, Uuid="8bc56bf8-a206-42b2-970f-60347a23e7fa"]
  9. union AXTreeID {
  10. // Placeholder for an unknown AXTreeID. The value of this field is not used.
  11. uint8 unknown;
  12. // Any AXTreeID that's not unknown must be an UnguessableToken.
  13. mojo_base.mojom.UnguessableToken token;
  14. };