// 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_SLOT_ANIMATION_DELEGATE_H_ #define CHROME_BROWSER_UI_VIEWS_TABS_TAB_SLOT_ANIMATION_DELEGATE_H_ #include "chrome/browser/ui/views/tabs/tab_container.h" #include "ui/gfx/animation/animation_delegate.h" // Provides the ability to monitor when a tab's bounds have been animated. Used // to hook callbacks to adjust things like tabstrip preferred size and tab group // underlines. class TabSlotAnimationDelegate : public gfx::AnimationDelegate { … }; #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_SLOT_ANIMATION_DELEGATE_H_