#include "components/tab_groups/tab_group_id.h"
namespace tab_groups {
TabGroupId TabGroupId::GenerateNew() { … }
TabGroupId TabGroupId::FromRawToken(base::Token token) { … }
TabGroupId TabGroupId::CreateEmpty() { … }
TabGroupId::TabGroupId(const TabGroupId& other) = default;
TabGroupId& TabGroupId::operator=(const TabGroupId& other) = default;
bool TabGroupId::operator==(const TabGroupId& other) const { … }
bool TabGroupId::operator!=(const TabGroupId& other) const { … }
bool TabGroupId::operator<(const TabGroupId& other) const { … }
std::string TabGroupId::ToString() const { … }
TabGroupId::TabGroupId(base::Token token) : … { … }
}