chromium/chrome/browser/ui/startup/test_third_party_cookie_phaseout_infobar_delegate.cc

// Copyright 2023 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/ui/startup/test_third_party_cookie_phaseout_infobar_delegate.h"

#include <memory>
#include <string>

#include "chrome/grit/generated_resources.h"
#include "components/infobars/content/content_infobar_manager.h"
#include "components/vector_icons/vector_icons.h"
#include "ui/base/l10n/l10n_util.h"
#include "url/gurl.h"

#if BUILDFLAG(IS_ANDROID)
#include "chrome/browser/infobars/confirm_infobar_creator.h"
#include "components/infobars/core/infobar.h"
#else
#include "chrome/browser/devtools/global_confirm_info_bar.h"
#endif

// static
void TestThirdPartyCookiePhaseoutInfoBarDelegate::Create(
    content::WebContents* web_contents) {}

const gfx::VectorIcon&
TestThirdPartyCookiePhaseoutInfoBarDelegate::GetVectorIcon() const {}

infobars::InfoBarDelegate::InfoBarIdentifier
TestThirdPartyCookiePhaseoutInfoBarDelegate::GetIdentifier() const {}

std::u16string TestThirdPartyCookiePhaseoutInfoBarDelegate::GetMessageText()
    const {}

std::u16string TestThirdPartyCookiePhaseoutInfoBarDelegate::GetLinkText()
    const {}

GURL TestThirdPartyCookiePhaseoutInfoBarDelegate::GetLinkURL() const {}

bool TestThirdPartyCookiePhaseoutInfoBarDelegate::ShouldExpire(
    const NavigationDetails& details) const {}

bool TestThirdPartyCookiePhaseoutInfoBarDelegate::ShouldAnimate() const {}

int TestThirdPartyCookiePhaseoutInfoBarDelegate::GetButtons() const {}

bool TestThirdPartyCookiePhaseoutInfoBarDelegate::IsCloseable() const {}