// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_ACCESSIBILITY_PLATFORM_INSPECT_AX_SCRIPT_INSTRUCTION_H_ #define UI_ACCESSIBILITY_PLATFORM_INSPECT_AX_SCRIPT_INSTRUCTION_H_ #include <string> #include "base/component_export.h" namespace ui { class AXPropertyNode; // A single script instruction. See AXInspectScenario. // Note: this is only for executing tests or for running a script via // ax_dump_tree/ax_dump_events for inspecting from out of process. class COMPONENT_EXPORT(AX_PLATFORM) AXScriptInstruction final { … }; } // namespace ui #endif // UI_ACCESSIBILITY_PLATFORM_INSPECT_AX_SCRIPT_INSTRUCTION_H_