chromium/ui/accessibility/platform/ax_platform_for_test.cc

// Copyright 2023 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/ax_platform_for_test.h"

#include <utility>

#include "base/check_op.h"

namespace ui {

namespace {

AXPlatformForTest* g_instance =;

}  // namespace

// static
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

}  // namespace ui