chromium/chrome/browser/ui/tabs/organization/tab_data.h

// Copyright 2023 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_TABS_ORGANIZATION_TAB_DATA_H_
#define CHROME_BROWSER_UI_TABS_ORGANIZATION_TAB_DATA_H_

#include <optional>

#include "base/memory/raw_ptr.h"
#include "base/observer_list.h"
#include "chrome/browser/ui/tabs/tab_strip_model_observer.h"
#include "components/tab_groups/tab_group_id.h"
#include "content/public/browser/web_contents_observer.h"
#include "url/gurl.h"

class TabStripModel;

namespace content {
class NavigationHandle;
class WebContents;
}  // namespace content

class TabData : public TabStripModelObserver,
                public content::WebContentsObserver {};

#endif  // CHROME_BROWSER_UI_TABS_ORGANIZATION_TAB_DATA_H_