mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
20 lines
574 B
Plaintext
20 lines
574 B
Plaintext
// 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;
|
|
ax.mojom.EventFrom event_from;
|
|
};
|