#include "ui/accessibility/platform/ax_platform_for_test.h"
#include <utility>
#include "base/check_op.h"
namespace ui {
namespace {
AXPlatformForTest* g_instance = …;
}
AXPlatformForTest& AXPlatformForTest::GetInstance() { … }
AXPlatformForTest::AXPlatformForTest() { … }
AXPlatformForTest::~AXPlatformForTest() { … }
AXMode AXPlatformForTest::GetProcessMode() { … }
void AXPlatformForTest::SetProcessMode(AXMode new_mode) { … }
void AXPlatformForTest::OnAccessibilityApiUsage() { … }
#if BUILDFLAG(IS_WIN)
AXPlatform::ProductStrings AXPlatformForTest::GetProductStrings() {
return {{}, {}, {}};
}
#endif
}