blob: f335d9c1b27c91256b43cdaf65fa19aba944f5f3 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// 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) {
infobar_manager->AddInfoBar(
CreateConfirmInfoBar(std::unique_ptr<ConfirmInfoBarDelegate>(
new CollectedCookiesInfoBarDelegate())));
}
CollectedCookiesInfoBarDelegate::CollectedCookiesInfoBarDelegate()
: ConfirmInfoBarDelegate() {}
CollectedCookiesInfoBarDelegate::~CollectedCookiesInfoBarDelegate() {}
infobars::InfoBarDelegate::InfoBarIdentifier
CollectedCookiesInfoBarDelegate::GetIdentifier() const {
return COLLECTED_COOKIES_INFOBAR_DELEGATE;
}
const gfx::VectorIcon& CollectedCookiesInfoBarDelegate::GetVectorIcon() const {
return vector_icons::kCookieIcon;
}
std::u16string CollectedCookiesInfoBarDelegate::GetMessageText() const {
return l10n_util::GetStringUTF16(IDS_COLLECTED_COOKIES_INFOBAR_MESSAGE);
}
int CollectedCookiesInfoBarDelegate::GetButtons() const {
return BUTTON_OK;
}
std::u16string CollectedCookiesInfoBarDelegate::GetButtonLabel(
InfoBarButton button) const {
DCHECK_EQ(BUTTON_OK, button);
return l10n_util::GetStringUTF16(IDS_COLLECTED_COOKIES_INFOBAR_BUTTON);
}
bool CollectedCookiesInfoBarDelegate::Accept() {
content::WebContents* web_contents =
infobars::ContentInfoBarManager::WebContentsFromInfoBar(infobar());
web_contents->GetController().Reload(content::ReloadType::NORMAL, true);
return true;
}