naiveproxy/ui/accessibility/mojom/ax_tree_update.mojom

19 lines
541 B
Plaintext
Raw Normal View History

2018-08-11 08:35:24 +03:00
// Copyright 2018 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 ax.mojom;
import "ui/accessibility/ax_enums.mojom";
import "ui/accessibility/mojom/ax_node_data.mojom";
import "ui/accessibility/mojom/ax_tree_data.mojom";
// See ui::AXTreeUpdate for comments / explanations of these fields.
struct AXTreeUpdate {
bool has_tree_data;
AXTreeData tree_data;
int32 node_id_to_clear;
int32 root_id;
array<AXNodeData> nodes;
};