// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_UI_VIEWS_TABS_TAB_STRIP_SCROLL_SESSION_H_ #define CHROME_BROWSER_UI_VIEWS_TABS_TAB_STRIP_SCROLL_SESSION_H_ #include "base/memory/raw_ptr.h" #include "base/time/time.h" #include "base/timer/timer.h" #include "tab_style_views.h" class TabDragWithScrollManager; // Interface that starts and stops a scrolling session. Current implementations // are timer based implementations class TabStripScrollSession { … }; class TabStripScrollSessionWithTimer : public TabStripScrollSession { … }; #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_STRIP_SCROLL_SESSION_H_