chromium/content/test/test_overscroll_delegate.cc

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/test/test_overscroll_delegate.h"

namespace content {

TestOverscrollDelegate::TestOverscrollDelegate(const gfx::Size& display_size)
    :{}

TestOverscrollDelegate::~TestOverscrollDelegate() {}

void TestOverscrollDelegate::Reset() {}

gfx::Size TestOverscrollDelegate::GetDisplaySize() const {}

bool TestOverscrollDelegate::OnOverscrollUpdate(float delta_x, float delta_y) {}

void TestOverscrollDelegate::OnOverscrollComplete(
    OverscrollMode overscroll_mode) {}

void TestOverscrollDelegate::OnOverscrollModeChange(
    OverscrollMode old_mode,
    OverscrollMode new_mode,
    OverscrollSource source,
    cc::OverscrollBehavior behavior) {}

std::optional<float> TestOverscrollDelegate::GetMaxOverscrollDelta() const {}

}  // namespace content