// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef UI_COMPOSITOR_OVERSCROLL_SCROLL_INPUT_HANDLER_H_ #define UI_COMPOSITOR_OVERSCROLL_SCROLL_INPUT_HANDLER_H_ #include "base/memory/weak_ptr.h" #include "cc/input/input_handler.h" #include "ui/compositor/compositor_export.h" namespace ui { class Layer; class ScrollEvent; // Class to feed UI-thread scroll events to a cc::InputHandler. Inspired by // ui::InputHandlerProxy but greatly simplified. class COMPOSITOR_EXPORT ScrollInputHandler : public cc::InputHandlerClient { … }; } // namespace ui #endif // UI_COMPOSITOR_OVERSCROLL_SCROLL_INPUT_HANDLER_H_