| // Copyright 2019 The Chromium Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| module content_capture.mojom; | |
| import "mojo/public/mojom/base/string16.mojom"; | |
| import "ui/gfx/geometry/mojo/geometry.mojom"; | |
| // The mojom definition of content_capture::ContentCaptureData. | |
| struct ContentCaptureData { | |
| int64 id; | |
| mojo_base.mojom.String16 value; | |
| gfx.mojom.Rect bounds; | |
| array<ContentCaptureData> children; | |
| }; |