OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2009 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. |
| 4 |
| 5 #include "chrome/browser/autofill/autofill_infobar_delegate.h" |
| 6 |
| 7 #include "app/l10n_util.h" |
| 8 #include "app/resource_bundle.h" |
| 9 #include "chrome/browser/autofill/autofill_manager.h" |
| 10 #include "chrome/browser/tab_contents/tab_contents.h" |
| 11 #include "grit/chromium_strings.h" |
| 12 #include "grit/generated_resources.h" |
| 13 #include "grit/theme_resources.h" |
| 14 #include "third_party/skia/include/core/SkBitmap.h" |
| 15 |
| 16 AutoFillInfoBarDelegate::AutoFillInfoBarDelegate(TabContents* tab_contents, |
| 17 AutoFillManager* host) |
| 18 : ConfirmInfoBarDelegate(tab_contents), |
| 19 host_(host) { |
| 20 if (tab_contents) |
| 21 tab_contents->AddInfoBar(this); |
| 22 } |
| 23 |
| 24 AutoFillInfoBarDelegate::~AutoFillInfoBarDelegate() { |
| 25 } |
| 26 |
| 27 bool AutoFillInfoBarDelegate::ShouldExpire( |
| 28 const NavigationController::LoadCommittedDetails& details) const { |
| 29 // The user has submitted a form, causing the page to navigate elsewhere. We |
| 30 // don't want the infobar to be expired at this point, because the user won't |
| 31 // get a chance to answer the question. |
| 32 return false; |
| 33 } |
| 34 |
| 35 void AutoFillInfoBarDelegate::InfoBarClosed() { |
| 36 Cancel(); |
| 37 // This will delete us. |
| 38 ConfirmInfoBarDelegate::InfoBarClosed(); |
| 39 } |
| 40 |
| 41 std::wstring AutoFillInfoBarDelegate::GetMessageText() const { |
| 42 return l10n_util::GetString(IDS_AUTOFILL_INFOBAR_TEXT); |
| 43 } |
| 44 |
| 45 SkBitmap* AutoFillInfoBarDelegate::GetIcon() const { |
| 46 return ResourceBundle::GetSharedInstance().GetBitmapNamed( |
| 47 IDR_INFOBAR_AUTOFILL); |
| 48 } |
| 49 |
| 50 int AutoFillInfoBarDelegate::GetButtons() const { |
| 51 return BUTTON_OK | BUTTON_CANCEL; |
| 52 } |
| 53 |
| 54 std::wstring AutoFillInfoBarDelegate::GetButtonLabel( |
| 55 ConfirmInfoBarDelegate::InfoBarButton button) const { |
| 56 if (button == BUTTON_OK) |
| 57 return l10n_util::GetString(IDS_AUTOFILL_INFOBAR_ACCEPT); |
| 58 |
| 59 return l10n_util::GetString(IDS_AUTOFILL_INFOBAR_DENY); |
| 60 } |
| 61 |
| 62 bool AutoFillInfoBarDelegate::Accept() { |
| 63 if (host_) { |
| 64 host_->SaveFormData(); |
| 65 host_ = NULL; |
| 66 } |
| 67 return true; |
| 68 } |
| 69 |
| 70 bool AutoFillInfoBarDelegate::Cancel() { |
| 71 if (host_) { |
| 72 host_->Reset(); |
| 73 host_ = NULL; |
| 74 } |
| 75 return true; |
| 76 } |
OLD | NEW |