#ifndef UI_ACCESSIBILITY_PLATFORM_AX_PLATFORM_H_
#define UI_ACCESSIBILITY_PLATFORM_AX_PLATFORM_H_
#include "base/component_export.h"
#include "base/gtest_prod_util.h"
#include "base/memory/raw_ref.h"
#include "base/observer_list.h"
#include "base/scoped_observation_traits.h"
#include "build/build_config.h"
#include "ui/accessibility/ax_mode.h"
namespace ui {
class AXModeObserver;
class AXPlatformNode;
class COMPONENT_EXPORT(AX_PLATFORM) AXPlatform { … };
}
namespace base {
template <>
struct ScopedObservationTraits<ui::AXPlatform, ui::AXModeObserver> { … };
}
#endif