// Copyright 2015 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_state.h" #include <utility> #include "cc/trees/scroll_node.h" namespace cc { ScrollState::ScrollState(ScrollStateData data) : … { … } ScrollState::ScrollState(const ScrollState& other) = default; ScrollState::~ScrollState() = default; void ScrollState::ConsumeDelta(double x, double y) { … } gfx::Vector2dF ScrollState::DeltaOrHint() const { … } } // namespace cc