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..a74b5a0b529fdf759101059401aa6f1098e881fe 100644 |
--- a/chrome/browser/tab_contents/insecure_content_infobar_delegate.cc |
+++ b/chrome/browser/tab_contents/insecure_content_infobar_delegate.cc |
@@ -78,10 +78,10 @@ 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::PAGE_TRANSITION_LINK, false)); |
return false; |
} |