// Copyright 2023 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifdef UNSAFE_BUFFERS_BUILD // TODO(crbug.com/40285824): Remove this and convert code to safer constructs. #pragma allow_unsafe_buffers #endif #ifndef UI_ACCESSIBILITY_AX_BIT_MAP_H_ #define UI_ACCESSIBILITY_AX_BIT_MAP_H_ #include <memory> #include <optional> #include <string> #include <tuple> #include "base/check.h" namespace ui { // A helper class to store AX-related boolean enums. template <typename T> class AXBitMap { … }; } // namespace ui #endif // UI_ACCESSIBILITY_AX_BIT_MAP_H_