ax_relative_bounds.mojom 487 B

12345678910111213141516
  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/gfx/geometry/mojom/geometry.mojom";
  6. import "ui/gfx/mojom/transform.mojom";
  7. // See ui::RelativeBounds for documentation.
  8. [Stable, Uuid="fd50f711-47fb-4334-a05a-11365b5db835"]
  9. struct AXRelativeBounds {
  10. int32 offset_container_id;
  11. gfx.mojom.RectF bounds;
  12. gfx.mojom.Transform transform;
  13. };