OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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/autofill/autofill_cc_infobar_delegate.h" | 5 #include "chrome/browser/autofill/autofill_cc_infobar_delegate.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "chrome/browser/autofill/credit_card.h" | 8 #include "chrome/browser/autofill/credit_card.h" |
9 #include "chrome/browser/autofill/personal_data_manager.h" | 9 #include "chrome/browser/autofill/personal_data_manager.h" |
10 #include "chrome/browser/ui/browser.h" | 10 #include "chrome/browser/infobars/infobar_tab_helper.h" |
11 #include "chrome/browser/ui/browser_list.h" | 11 #include "chrome/common/url_constants.h" |
| 12 #include "content/public/browser/page_navigator.h" |
| 13 #include "content/public/browser/web_contents.h" |
| 14 #include "content/public/browser/web_contents_delegate.h" |
12 #include "grit/generated_resources.h" | 15 #include "grit/generated_resources.h" |
13 #include "grit/theme_resources_standard.h" | 16 #include "grit/theme_resources_standard.h" |
14 #include "ui/base/l10n/l10n_util.h" | 17 #include "ui/base/l10n/l10n_util.h" |
15 #include "ui/base/resource/resource_bundle.h" | 18 #include "ui/base/resource/resource_bundle.h" |
16 | 19 |
17 AutofillCCInfoBarDelegate::AutofillCCInfoBarDelegate( | 20 AutofillCCInfoBarDelegate::AutofillCCInfoBarDelegate( |
18 InfoBarTabHelper* infobar_helper, | 21 InfoBarTabHelper* infobar_helper, |
19 const CreditCard* credit_card, | 22 const CreditCard* credit_card, |
20 PersonalDataManager* personal_data, | 23 PersonalDataManager* personal_data, |
21 const AutofillMetrics* metric_logger) | 24 const AutofillMetrics* metric_logger) |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 bool AutofillCCInfoBarDelegate::Cancel() { | 82 bool AutofillCCInfoBarDelegate::Cancel() { |
80 LogUserAction(AutofillMetrics::INFOBAR_DENIED); | 83 LogUserAction(AutofillMetrics::INFOBAR_DENIED); |
81 return true; | 84 return true; |
82 } | 85 } |
83 | 86 |
84 string16 AutofillCCInfoBarDelegate::GetLinkText() const { | 87 string16 AutofillCCInfoBarDelegate::GetLinkText() const { |
85 return l10n_util::GetStringUTF16(IDS_LEARN_MORE); | 88 return l10n_util::GetStringUTF16(IDS_LEARN_MORE); |
86 } | 89 } |
87 | 90 |
88 bool AutofillCCInfoBarDelegate::LinkClicked(WindowOpenDisposition disposition) { | 91 bool AutofillCCInfoBarDelegate::LinkClicked(WindowOpenDisposition disposition) { |
89 #if defined(OS_ANDROID) | 92 owner()->web_contents()->GetDelegate()->OpenURLFromTab( |
90 // There's no link for infobars on Android. | 93 owner()->web_contents(), |
91 NOTREACHED(); | 94 content::OpenURLParams(GURL(chrome::kAutofillHelpURL), |
| 95 content::Referrer(), |
| 96 NEW_FOREGROUND_TAB, |
| 97 content::PAGE_TRANSITION_LINK, |
| 98 false)); |
92 return false; | 99 return false; |
93 #else | |
94 Browser* browser = BrowserList::GetLastActive(); | |
95 DCHECK(browser); | |
96 browser->OpenAutofillHelpTabAndActivate(); | |
97 return false; | |
98 #endif // #if defined(OS_ANDROID) | |
99 } | 100 } |
OLD | NEW |