// Copyright 2019 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_GROUP_HIGHLIGHT_H_ #define CHROME_BROWSER_UI_VIEWS_TABS_TAB_GROUP_HIGHLIGHT_H_ #include "base/memory/raw_ptr.h" #include "components/tab_groups/tab_group_id.h" #include "ui/base/metadata/metadata_header_macros.h" #include "ui/views/view.h" class TabGroupViews; class TabGroupStyle; // View for tab group highlights in the tab strip, which indicate that a group // is in a selected state. There is one highlight for each group, which is // positioned across all tabs in the group and painted by the tab strip. class TabGroupHighlight : public views::View { … }; #endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_GROUP_HIGHLIGHT_H_