mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
29 lines
806 B
Plaintext
29 lines
806 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/gfx/geometry/mojo/geometry.mojom";
|
|
|
|
// A compact representation of an accessibility action and the arguments
|
|
// associated with that action. See ui::AXActionData for full documentation.
|
|
struct AXActionData {
|
|
Action action;
|
|
int32 target_tree_id;
|
|
string source_extension_id;
|
|
int32 target_node_id;
|
|
int32 request_id;
|
|
int32 flags;
|
|
int32 anchor_node_id;
|
|
int32 anchor_offset;
|
|
int32 focus_node_id;
|
|
int32 focus_offset;
|
|
int32 custom_action_id;
|
|
gfx.mojom.Rect target_rect;
|
|
gfx.mojom.Point target_point;
|
|
string value;
|
|
Event hit_test_event_to_fire;
|
|
};
|