Add ability to gather metrics to BubbleManager.
[chromium-blink-merge.git] / chrome / browser / ui / collected_cookies_infobar_delegate.cc
blobdc61e2c1e9fddb76445ff4daa53cebec5c60d2fa
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/browser/ui/collected_cookies_infobar_delegate.h"
7 #include "base/logging.h"
8 #include "chrome/browser/infobars/infobar_service.h"
9 #include "chrome/grit/generated_resources.h"
10 #include "components/infobars/core/infobar.h"
11 #include "content/public/browser/web_contents.h"
12 #include "grit/theme_resources.h"
13 #include "ui/base/l10n/l10n_util.h"
14 #include "ui/gfx/vector_icons_public.h"
16 // static
17 void CollectedCookiesInfoBarDelegate::Create(InfoBarService* infobar_service) {
18 infobar_service->AddInfoBar(
19 infobar_service->CreateConfirmInfoBar(scoped_ptr<ConfirmInfoBarDelegate>(
20 new CollectedCookiesInfoBarDelegate())));
23 CollectedCookiesInfoBarDelegate::CollectedCookiesInfoBarDelegate()
24 : ConfirmInfoBarDelegate() {
27 CollectedCookiesInfoBarDelegate::~CollectedCookiesInfoBarDelegate() {
30 infobars::InfoBarDelegate::Type
31 CollectedCookiesInfoBarDelegate::GetInfoBarType() const {
32 return PAGE_ACTION_TYPE;
35 int CollectedCookiesInfoBarDelegate::GetIconId() const {
36 return IDR_INFOBAR_COOKIE;
39 gfx::VectorIconId CollectedCookiesInfoBarDelegate::GetVectorIconId() const {
40 #if defined(OS_MACOSX)
41 return gfx::VectorIconId::VECTOR_ICON_NONE;
42 #else
43 return gfx::VectorIconId::COOKIE;
44 #endif
47 base::string16 CollectedCookiesInfoBarDelegate::GetMessageText() const {
48 return l10n_util::GetStringUTF16(IDS_COLLECTED_COOKIES_INFOBAR_MESSAGE);
51 int CollectedCookiesInfoBarDelegate::GetButtons() const {
52 return BUTTON_OK;
55 base::string16 CollectedCookiesInfoBarDelegate::GetButtonLabel(
56 InfoBarButton button) const {
57 DCHECK_EQ(BUTTON_OK, button);
58 return l10n_util::GetStringUTF16(IDS_COLLECTED_COOKIES_INFOBAR_BUTTON);
61 bool CollectedCookiesInfoBarDelegate::Accept() {
62 content::WebContents* web_contents =
63 InfoBarService::WebContentsFromInfoBar(infobar());
64 web_contents->GetController().Reload(true);
65 return true;