blob: 1f3ece0e685a441fd98cf028d3a877c9acf1182e [file] [log] [blame]
// 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;
};