chromium/chrome/browser/ui/views/performance_controls/tab_list_row_view.h

// Copyright 2024 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_PERFORMANCE_CONTROLS_TAB_LIST_ROW_VIEW_H_
#define CHROME_BROWSER_UI_VIEWS_PERFORMANCE_CONTROLS_TAB_LIST_ROW_VIEW_H_

#include <string>

#include "base/scoped_observation.h"
#include "chrome/browser/ui/performance_controls/tab_list_model.h"
#include "components/performance_manager/public/resource_attribution/page_context.h"
#include "ui/base/metadata/metadata_header_macros.h"
#include "ui/views/focus/focus_manager.h"
#include "ui/views/view.h"

class TextContainer;

namespace views {
class ImageButton;
class InkDropContainerView;
}  // namespace views

class TabListRowView : public views::View,
                       public views::FocusChangeListener,
                       public TabListModel::Observer {};

#endif  // CHROME_BROWSER_UI_VIEWS_PERFORMANCE_CONTROLS_TAB_LIST_ROW_VIEW_H_