| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/ui/gtk/sad_tab_gtk.h" | 5 #include "chrome/browser/ui/gtk/sad_tab_gtk.h" |
| 6 | 6 |
| 7 #include "base/utf_string_conversions.h" | 7 #include "base/utf_string_conversions.h" |
| 8 #include "chrome/browser/google/google_util.h" | 8 #include "chrome/browser/google/google_util.h" |
| 9 #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h" | 9 #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h" |
| 10 #include "chrome/common/url_constants.h" | 10 #include "chrome/common/url_constants.h" |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 } | 154 } |
| 155 | 155 |
| 156 void SadTabGtk::OnLinkButtonClick(GtkWidget* sender) { | 156 void SadTabGtk::OnLinkButtonClick(GtkWidget* sender) { |
| 157 if (tab_contents_ != NULL) { | 157 if (tab_contents_ != NULL) { |
| 158 GURL help_url = | 158 GURL help_url = |
| 159 google_util::AppendGoogleLocaleParam(GURL( | 159 google_util::AppendGoogleLocaleParam(GURL( |
| 160 kind_ == CRASHED ? | 160 kind_ == CRASHED ? |
| 161 chrome::kCrashReasonURL : | 161 chrome::kCrashReasonURL : |
| 162 chrome::kKillReasonURL)); | 162 chrome::kKillReasonURL)); |
| 163 tab_contents_->OpenURL(OpenURLParams( | 163 tab_contents_->OpenURL(OpenURLParams( |
| 164 help_url, GURL(), CURRENT_TAB, content::PAGE_TRANSITION_LINK, false)); | 164 help_url, content::Referrer(), CURRENT_TAB, |
| 165 content::PAGE_TRANSITION_LINK, false)); |
| 165 } | 166 } |
| 166 } | 167 } |
| OLD | NEW |