chromium/components/saved_tab_groups/utils.cc

// 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.

#include "components/saved_tab_groups/utils.h"

#include "base/strings/utf_string_conversions.h"
#include "build/build_config.h"
#include "components/saved_tab_groups/types.h"

namespace tab_groups {
namespace {
const char kChromeUINewTabURL[] =;

// Tab title to be shown or synced when tab URL is in an unsupported scheme.
const char* kDefaultTitleOverride =;
}  // namespace

bool AreLocalIdsPersisted() {}

std::string LocalTabGroupIDToString(const LocalTabGroupID& local_tab_group_id) {}

std::optional<LocalTabGroupID> LocalTabGroupIDFromString(
    const std::string& serialized_local_tab_group_id) {}

bool IsURLValidForSavedTabGroups(const GURL& gurl) {}

std::pair<GURL, std::u16string> GetDefaultUrlAndTitle() {}

}  // namespace tab_groups