chromium/chrome/browser/ui/collected_cookies_infobar_delegate.cc

// Copyright 2012 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/collected_cookies_infobar_delegate.h"

#include "base/check_op.h"
#include "build/build_config.h"
#include "chrome/browser/infobars/confirm_infobar_creator.h"
#include "chrome/grit/generated_resources.h"
#include "components/infobars/content/content_infobar_manager.h"
#include "components/infobars/core/infobar.h"
#include "components/vector_icons/vector_icons.h"
#include "content/public/browser/web_contents.h"
#include "ui/base/l10n/l10n_util.h"

// static
void CollectedCookiesInfoBarDelegate::Create(
    infobars::ContentInfoBarManager* infobar_manager) {}

CollectedCookiesInfoBarDelegate::CollectedCookiesInfoBarDelegate() = default;

CollectedCookiesInfoBarDelegate::~CollectedCookiesInfoBarDelegate() {}

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

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

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

int CollectedCookiesInfoBarDelegate::GetButtons() const {}

std::u16string CollectedCookiesInfoBarDelegate::GetButtonLabel(
    InfoBarButton button) const {}

bool CollectedCookiesInfoBarDelegate::Accept() {}