chromium/ui/accessibility/null_ax_action_target.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/null_ax_action_target.h"

namespace ui {

AXActionTarget::Type NullAXActionTarget::GetType() const {}

bool NullAXActionTarget::PerformAction(const AXActionData& action_data) const {}

gfx::Rect NullAXActionTarget::GetRelativeBounds() const {}

gfx::Point NullAXActionTarget::GetScrollOffset() const {}

gfx::Point NullAXActionTarget::MinimumScrollOffset() const {}

gfx::Point NullAXActionTarget::MaximumScrollOffset() const {}

void NullAXActionTarget::SetScrollOffset(const gfx::Point& point) const {}

bool NullAXActionTarget::SetSelection(const AXActionTarget* anchor_object,
                                      int anchor_offset,
                                      const AXActionTarget* focus_object,
                                      int focus_offset) const {}

bool NullAXActionTarget::ScrollToMakeVisible() const {}

bool NullAXActionTarget::ScrollToMakeVisibleWithSubFocus(
    const gfx::Rect& rect,
    ax::mojom::ScrollAlignment horizontal_scroll_alignment,
    ax::mojom::ScrollAlignment vertical_scroll_alignment,
    ax::mojom::ScrollBehavior scroll_behavior) const {}

}  // namespace ui