| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/ui/collected_cookies_infobar_delegate.h" | 5 #include "chrome/browser/ui/collected_cookies_infobar_delegate.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "chrome/browser/infobars/infobar_tab_helper.h" | 8 #include "chrome/browser/infobars/infobar_tab_helper.h" |
| 9 #include "content/public/browser/web_contents.h" | 9 #include "content/public/browser/web_contents.h" |
| 10 #include "grit/generated_resources.h" | 10 #include "grit/generated_resources.h" |
| 11 #include "grit/theme_resources_standard.h" | 11 #include "grit/theme_resources.h" |
| 12 #include "ui/base/l10n/l10n_util.h" | 12 #include "ui/base/l10n/l10n_util.h" |
| 13 #include "ui/base/resource/resource_bundle.h" | 13 #include "ui/base/resource/resource_bundle.h" |
| 14 | 14 |
| 15 CollectedCookiesInfoBarDelegate::CollectedCookiesInfoBarDelegate( | 15 CollectedCookiesInfoBarDelegate::CollectedCookiesInfoBarDelegate( |
| 16 InfoBarTabHelper* infobar_helper) | 16 InfoBarTabHelper* infobar_helper) |
| 17 : ConfirmInfoBarDelegate(infobar_helper) { | 17 : ConfirmInfoBarDelegate(infobar_helper) { |
| 18 } | 18 } |
| 19 | 19 |
| 20 gfx::Image* CollectedCookiesInfoBarDelegate::GetIcon() const { | 20 gfx::Image* CollectedCookiesInfoBarDelegate::GetIcon() const { |
| 21 return &ResourceBundle::GetSharedInstance().GetNativeImageNamed( | 21 return &ResourceBundle::GetSharedInstance().GetNativeImageNamed( |
| (...skipping 15 matching lines...) Expand all Loading... |
| 37 string16 CollectedCookiesInfoBarDelegate::GetButtonLabel( | 37 string16 CollectedCookiesInfoBarDelegate::GetButtonLabel( |
| 38 InfoBarButton button) const { | 38 InfoBarButton button) const { |
| 39 DCHECK_EQ(BUTTON_OK, button); | 39 DCHECK_EQ(BUTTON_OK, button); |
| 40 return l10n_util::GetStringUTF16(IDS_COLLECTED_COOKIES_INFOBAR_BUTTON); | 40 return l10n_util::GetStringUTF16(IDS_COLLECTED_COOKIES_INFOBAR_BUTTON); |
| 41 } | 41 } |
| 42 | 42 |
| 43 bool CollectedCookiesInfoBarDelegate::Accept() { | 43 bool CollectedCookiesInfoBarDelegate::Accept() { |
| 44 owner()->web_contents()->GetController().Reload(true); | 44 owner()->web_contents()->GetController().Reload(true); |
| 45 return true; | 45 return true; |
| 46 } | 46 } |
| OLD | NEW |