// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_RENDERER_HOST_OVERSCROLL_CONTROLLER_DELEGATE_H_ #define CONTENT_BROWSER_RENDERER_HOST_OVERSCROLL_CONTROLLER_DELEGATE_H_ #include <optional> #include "base/memory/weak_ptr.h" #include "content/browser/renderer_host/overscroll_controller.h" #include "content/common/content_export.h" #include "ui/gfx/geometry/size.h" namespace content { // The delegate receives overscroll gesture updates from the controller and // should perform appropriate actions. The delegate can optionally cap the // overscroll deltas maintained and reported by the controller. class CONTENT_EXPORT OverscrollControllerDelegate { … }; } // namespace content #endif // CONTENT_BROWSER_RENDERER_HOST_OVERSCROLL_CONTROLLER_DELEGATE_H_