// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/accessibility/ax_mode.h" #include <string_view> #include <vector> #include "base/strings/string_util.h" namespace ui { std::ostream& operator<<(std::ostream& stream, const AXMode& mode) { … } bool AXMode::HasExperimentalFlags(uint32_t experimental_flag) const { … } void AXMode::SetExperimentalFlags(uint32_t experimental_flag, bool value) { … } std::string AXMode::ToString() const { … } } // namespace ui