chromium/components/tab_groups/tab_group_info.cc

// Copyright 2022 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_info.h"

#include <ostream>

#include "base/notreached.h"
#include "base/strings/utf_string_conversions.h"
#include "components/tab_groups/tab_group_color.h"

namespace tab_groups {

std::string TabGroupColorToString(TabGroupColorId color) {}

TabGroupInfo::TabGroupInfo(const gfx::Range& tab_range,
                           const TabGroupVisualData& visual_data)
    :{}

TabGroupInfo::TabGroupInfo() = default;

TabGroupInfo::TabGroupInfo(TabGroupInfo&& other)
    :{}

TabGroupInfo::TabGroupInfo(const TabGroupInfo& other) = default;
TabGroupInfo& TabGroupInfo::operator=(const TabGroupInfo& other) = default;
TabGroupInfo::~TabGroupInfo() = default;

bool TabGroupInfo::operator==(const TabGroupInfo& other) const {}

std::string TabGroupInfo::ToString() const {}

}  // namespace tab_groups