chromium/ui/accessibility/platform/test_ax_platform_tree_manager_delegate.cc

// Copyright 2019 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/test_ax_platform_tree_manager_delegate.h"

namespace ui {

TestAXPlatformTreeManagerDelegate::TestAXPlatformTreeManagerDelegate()
    :{}

void TestAXPlatformTreeManagerDelegate::AccessibilityPerformAction(
    const AXActionData& data) {}

bool TestAXPlatformTreeManagerDelegate::AccessibilityViewHasFocus() {}

void TestAXPlatformTreeManagerDelegate::AccessibilityViewSetFocus() {}

gfx::Rect TestAXPlatformTreeManagerDelegate::AccessibilityGetViewBounds() {}

float TestAXPlatformTreeManagerDelegate::AccessibilityGetDeviceScaleFactor() {}

void TestAXPlatformTreeManagerDelegate::UnrecoverableAccessibilityError() {}

gfx::AcceleratedWidget
TestAXPlatformTreeManagerDelegate::AccessibilityGetAcceleratedWidget() {}

gfx::NativeViewAccessible
TestAXPlatformTreeManagerDelegate::AccessibilityGetNativeViewAccessible() {}

gfx::NativeViewAccessible TestAXPlatformTreeManagerDelegate::
    AccessibilityGetNativeViewAccessibleForWindow() {}

void TestAXPlatformTreeManagerDelegate::AccessibilityHitTest(
    const gfx::Point& point_in_frame_pixels,
    const ax::mojom::Event& opt_event_to_fire,
    int opt_request_id,
    base::OnceCallback<void(AXPlatformTreeManager* hit_manager,
                            AXNodeID hit_node_id)> opt_callback) {}

gfx::NativeWindow TestAXPlatformTreeManagerDelegate::GetTopLevelNativeWindow() {}

bool TestAXPlatformTreeManagerDelegate::CanFireAccessibilityEvents() const {}

bool TestAXPlatformTreeManagerDelegate::AccessibilityIsRootFrame() const {}

bool TestAXPlatformTreeManagerDelegate::ShouldSuppressAXLoadComplete() {}

content::WebContentsAccessibility*
TestAXPlatformTreeManagerDelegate::AccessibilityGetWebContentsAccessibility() {}

}  // namespace ui