// Copyright 2020 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/platform/inspect/ax_tree_formatter.h" #include <ostream> #include "base/check.h" #include "base/strings/pattern.h" #include "base/values.h" namespace ui { // AXTreeFormatter // static bool AXTreeFormatter::MatchesPropertyFilters( const std::vector<AXPropertyFilter>& property_filters, const std::string& text, bool default_result) { … } // static bool AXTreeFormatter::MatchesNodeFilters( const std::vector<AXNodeFilter>& node_filters, const base::Value::Dict& dict) { … } } // namespace ui