// Copyright 2020 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "cc/input/scroll_utils.h" #include <algorithm> #include "ui/gfx/geometry/size_f.h" #include "ui/gfx/geometry/vector2d_f.h" namespace cc { // static gfx::Vector2dF ScrollUtils::ResolveScrollPercentageToPixels( const gfx::Vector2dF& delta, const gfx::SizeF& scroller, const gfx::SizeF& viewport) { … } gfx::Vector2dF ScrollUtils::ResolvePixelScrollToPercentageForTesting( const gfx::Vector2dF& delta, const gfx::SizeF& scroller, const gfx::SizeF& viewport) { … } } // namespace cc