chromium/chrome/browser/chooser_controller/title_util.cc

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

#include "chrome/browser/chooser_controller/title_util.h"

#include <string>

#include "base/strings/utf_string_conversions.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/url_identity.h"
#include "content/public/browser/render_frame_host.h"
#include "ui/base/l10n/l10n_util.h"
#include "url/gurl.h"

namespace {

constexpr UrlIdentity::TypeSet kUrlIdentityAllowedTypes =;
constexpr UrlIdentity::FormatOptions kUrlIdentityOptions{};

}  // namespace

std::u16string CreateChooserTitle(content::RenderFrameHost* render_frame_host,
                                  int title_string_id) {}