| Index: chrome/browser/autofill/autofill_cc_infobar_delegate.cc
|
| ===================================================================
|
| --- chrome/browser/autofill/autofill_cc_infobar_delegate.cc (revision 194436)
|
| +++ chrome/browser/autofill/autofill_cc_infobar_delegate.cc (working copy)
|
| @@ -110,11 +110,12 @@
|
| bool AutofillCCInfoBarDelegate::LinkClicked(WindowOpenDisposition disposition) {
|
| owner()->GetWebContents()->GetDelegate()->OpenURLFromTab(
|
| owner()->GetWebContents(),
|
| - content::OpenURLParams(GURL(autofill::kHelpURL),
|
| - content::Referrer(),
|
| - NEW_FOREGROUND_TAB,
|
| - content::PAGE_TRANSITION_LINK,
|
| - false));
|
| + content::OpenURLParams(
|
| + GURL(autofill::kHelpURL),
|
| + content::Referrer(),
|
| + (disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition,
|
| + content::PAGE_TRANSITION_LINK,
|
| + false));
|
| return false;
|
| }
|
|
|
|
|