| Index: chrome/browser/tab_contents/insecure_content_infobar_delegate.cc
|
| diff --git a/chrome/browser/tab_contents/insecure_content_infobar_delegate.cc b/chrome/browser/tab_contents/insecure_content_infobar_delegate.cc
|
| index 00b325ffb503c71ee7db6e1b8951c8cb39ea7f42..9c3be0a8d6d74407ed446ebeb79a4193ba559362 100644
|
| --- a/chrome/browser/tab_contents/insecure_content_infobar_delegate.cc
|
| +++ b/chrome/browser/tab_contents/insecure_content_infobar_delegate.cc
|
| @@ -78,10 +78,11 @@ string16 InsecureContentInfoBarDelegate::GetLinkText() const {
|
|
|
| bool InsecureContentInfoBarDelegate::LinkClicked(
|
| WindowOpenDisposition disposition) {
|
| - owner()->tab_contents()->OpenURL(
|
| + owner()->tab_contents()->OpenURL(OpenURLParams(
|
| google_util::AppendGoogleLocaleParam(GURL(
|
| "https://www.google.com/support/chrome/bin/answer.py?answer=1342714")),
|
| - GURL(), (disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition,
|
| - content::PAGE_TRANSITION_LINK);
|
| + content::Referrer(),
|
| + (disposition == CURRENT_TAB) ? NEW_FOREGROUND_TAB : disposition,
|
| + content::PAGE_TRANSITION_LINK, false));
|
| return false;
|
| }
|
|
|