// Copyright 2024 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_AX_TREE_CHECKS_H_ #define UI_ACCESSIBILITY_AX_TREE_CHECKS_H_ #include <stddef.h> #include "ui/accessibility/ax_base_export.h" namespace ui { // Data for AXTree checks that run when DHECKs are on. // TODO(accessibility) Use the mojo struct directly in C++ code to avoid having // to typemap it. struct AX_BASE_EXPORT AXTreeChecks { … }; } // namespace ui #endif // UI_ACCESSIBILITY_AX_TREE_CHECKS_H_