chromium/ui/accessibility/mojom/ax_relative_bounds.mojom

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

module ax.mojom;

import "ui/gfx/geometry/mojom/geometry.mojom";
import "ui/gfx/mojom/transform.mojom";

// See ui::RelativeBounds for documentation.
[Stable, Uuid="fd50f711-47fb-4334-a05a-11365b5db835"]
struct AXRelativeBounds {
  int32 offset_container_id;
  gfx.mojom.RectF bounds;
  gfx.mojom.Transform transform;
};