| OLD | NEW |
| (Empty) |
| 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. | |
| 4 | |
| 5 #include "chrome/browser/autofill/autofill_cc_infobar_delegate.h" | |
| 6 | |
| 7 #include "base/logging.h" | |
| 8 #include "chrome/browser/infobars/infobar_service.h" | |
| 9 #include "chrome/grit/generated_resources.h" | |
| 10 #include "chrome/grit/google_chrome_strings.h" | |
| 11 #include "components/autofill/core/browser/credit_card.h" | |
| 12 #include "components/autofill/core/browser/personal_data_manager.h" | |
| 13 #include "components/autofill/core/common/autofill_constants.h" | |
| 14 #include "components/infobars/core/infobar.h" | |
| 15 #include "content/public/browser/page_navigator.h" | |
| 16 #include "content/public/browser/web_contents.h" | |
| 17 #include "content/public/browser/web_contents_delegate.h" | |
| 18 #include "grit/components_strings.h" | |
| 19 #include "grit/theme_resources.h" | |
| 20 #include "ui/base/l10n/l10n_util.h" | |
| 21 | |
| 22 namespace autofill { | |
| 23 | |
| 24 // static | |
| 25 void AutofillCCInfoBarDelegate::Create( | |
| 26 InfoBarService* infobar_service, | |
| 27 const AutofillMetrics* metric_logger, | |
| 28 const base::Closure& save_card_callback) { | |
| 29 infobar_service->AddInfoBar(ConfirmInfoBarDelegate::CreateInfoBar( | |
| 30 scoped_ptr<ConfirmInfoBarDelegate>(new AutofillCCInfoBarDelegate( | |
| 31 metric_logger, save_card_callback)))); | |
| 32 } | |
| 33 | |
| 34 AutofillCCInfoBarDelegate::AutofillCCInfoBarDelegate( | |
| 35 const AutofillMetrics* metric_logger, | |
| 36 const base::Closure& save_card_callback) | |
| 37 : ConfirmInfoBarDelegate(), | |
| 38 metric_logger_(metric_logger), | |
| 39 save_card_callback_(save_card_callback), | |
| 40 had_user_interaction_(false) { | |
| 41 metric_logger->LogCreditCardInfoBarMetric(AutofillMetrics::INFOBAR_SHOWN); | |
| 42 } | |
| 43 | |
| 44 AutofillCCInfoBarDelegate::~AutofillCCInfoBarDelegate() { | |
| 45 if (!had_user_interaction_) | |
| 46 LogUserAction(AutofillMetrics::INFOBAR_IGNORED); | |
| 47 } | |
| 48 | |
| 49 void AutofillCCInfoBarDelegate::LogUserAction( | |
| 50 AutofillMetrics::InfoBarMetric user_action) { | |
| 51 DCHECK(!had_user_interaction_); | |
| 52 | |
| 53 metric_logger_->LogCreditCardInfoBarMetric(user_action); | |
| 54 had_user_interaction_ = true; | |
| 55 } | |
| 56 | |
| 57 void AutofillCCInfoBarDelegate::InfoBarDismissed() { | |
| 58 LogUserAction(AutofillMetrics::INFOBAR_DENIED); | |
| 59 } | |
| 60 | |
| 61 int AutofillCCInfoBarDelegate::GetIconID() const { | |
| 62 return IDR_INFOBAR_AUTOFILL_CC; | |
| 63 } | |
| 64 | |
| 65 infobars::InfoBarDelegate::Type AutofillCCInfoBarDelegate::GetInfoBarType() | |
| 66 const { | |
| 67 return PAGE_ACTION_TYPE; | |
| 68 } | |
| 69 | |
| 70 bool AutofillCCInfoBarDelegate::ShouldExpireInternal( | |
| 71 const NavigationDetails& details) const { | |
| 72 // The user has submitted a form, causing the page to navigate elsewhere. We | |
| 73 // don't want the infobar to be expired at this point, because the user won't | |
| 74 // get a chance to answer the question. | |
| 75 return false; | |
| 76 } | |
| 77 | |
| 78 base::string16 AutofillCCInfoBarDelegate::GetMessageText() const { | |
| 79 return l10n_util::GetStringUTF16(IDS_AUTOFILL_CC_INFOBAR_TEXT); | |
| 80 } | |
| 81 | |
| 82 base::string16 AutofillCCInfoBarDelegate::GetButtonLabel( | |
| 83 InfoBarButton button) const { | |
| 84 return l10n_util::GetStringUTF16((button == BUTTON_OK) ? | |
| 85 IDS_AUTOFILL_CC_INFOBAR_ACCEPT : IDS_AUTOFILL_CC_INFOBAR_DENY); | |
| 86 } | |
| 87 | |
| 88 bool AutofillCCInfoBarDelegate::Accept() { | |
| 89 save_card_callback_.Run(); | |
| 90 save_card_callback_.Reset(); | |
| 91 LogUserAction(AutofillMetrics::INFOBAR_ACCEPTED); | |
| 92 return true; | |
| 93 } | |
| 94 | |
| 95 bool AutofillCCInfoBarDelegate::Cancel() { | |
| 96 LogUserAction(AutofillMetrics::INFOBAR_DENIED); | |
| 97 return true; | |
| 98 } | |
| 99 | |
| 100 base::string16 AutofillCCInfoBarDelegate::GetLinkText() const { | |
| 101 return l10n_util::GetStringUTF16(IDS_LEARN_MORE); | |
| 102 } | |
| 103 | |
| 104 bool AutofillCCInfoBarDelegate::LinkClicked(WindowOpenDisposition disposition) { | |
| 105 InfoBarService::WebContentsFromInfoBar(infobar())->OpenURL( | |
| 106 content::OpenURLParams( | |
| 107 GURL(autofill::kHelpURL), content::Referrer(), | |
| 108 (disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition, | |
| 109 ui::PAGE_TRANSITION_LINK, false)); | |
| 110 return false; | |
| 111 } | |
| 112 | |
| 113 } // namespace autofill | |
| OLD | NEW |