chromium/components/tab_groups/tab_group_id.cc

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/tab_groups/tab_group_id.h"

namespace tab_groups {

// static
TabGroupId TabGroupId::GenerateNew() {}

// static
TabGroupId TabGroupId::FromRawToken(base::Token token) {}

// static
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) :{}

}  // namespace tab_groups