blob: fd30033ccc0d2444dac8c5601834e6b7599e2496 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// 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_HEADER_H_
#define CHROME_BROWSER_UI_VIEWS_TABS_TAB_GROUP_HEADER_H_
#include "chrome/browser/ui/tabs/tab_group_id.h"
#include "ui/views/view.h"
class TabController;
class TabGroupData;
// View for tab group headers in the tab strip, which are tab-shaped markers of
// group boundaries. There is one header for each group, which is included in
// the tab strip flow and positioned left of the leftmost tab in the group.
class TabGroupHeader : public views::View {
public:
TabGroupHeader(TabController* controller, TabGroupId group);
private:
const TabGroupData* GetGroupData();
TabController* const controller_;
const TabGroupId group_;
DISALLOW_COPY_AND_ASSIGN(TabGroupHeader);
};
#endif // CHROME_BROWSER_UI_VIEWS_TABS_TAB_GROUP_HEADER_H_