chromium/chrome/browser/tab_group_sync/tab_group_sync_tab_state.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_TAB_GROUP_SYNC_TAB_GROUP_SYNC_TAB_STATE_H_
#define CHROME_BROWSER_TAB_GROUP_SYNC_TAB_GROUP_SYNC_TAB_STATE_H_

#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "content/public/browser/web_contents_user_data.h"

// This class is used to store information about a tab inside a saved tab group.
class TabGroupSyncTabState
    : public content::WebContentsUserData<TabGroupSyncTabState> {};

#endif  // CHROME_BROWSER_TAB_GROUP_SYNC_TAB_GROUP_SYNC_TAB_STATE_H_