// 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. #ifndef UI_VIEWS_TEST_AX_EVENT_COUNTER_H_ #define UI_VIEWS_TEST_AX_EVENT_COUNTER_H_ #include <utility> #include "base/containers/flat_map.h" #include "base/memory/raw_ptr.h" #include "base/run_loop.h" #include "base/scoped_observation.h" #include "ui/accessibility/ax_enums.mojom.h" #include "ui/views/accessibility/ax_event_manager.h" #include "ui/views/accessibility/ax_event_observer.h" namespace views::test { // AXEventCounter provides a convenient way to count events registered by the // AXEventManager by their event type, and wait for events of a specific type. class AXEventCounter : public views::AXEventObserver { … }; } // namespace views::test #endif // UI_VIEWS_TEST_AX_EVENT_COUNTER_H_