Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Unified Diff: chrome/browser/dom_ui/bug_report_ui.cc

Issue 6366007: Disable sending of page title in Chrome reports. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/dom_ui/bug_report_ui.cc
diff --git a/chrome/browser/dom_ui/bug_report_ui.cc b/chrome/browser/dom_ui/bug_report_ui.cc
index bd4bd15b8969306953339577c41a0e24fb0beadd..20b06e794f0f1801857dce10f09de1abac609d2c 100644
--- a/chrome/browser/dom_ui/bug_report_ui.cc
+++ b/chrome/browser/dom_ui/bug_report_ui.cc
@@ -528,7 +528,9 @@ base::StringPiece BugReportHandler::Init() {
TabContents* target_tab = browser->GetTabContentsAt(index);
if (target_tab) {
- target_tab_title_ = target_tab->GetTitle();
+ // TODO(rkc): Remove target tab title completely once we decide if we
+ // decide if there never is a reason to send it at all.
+ target_tab_title_ = string16();
zel 2011/01/21 21:47:17 if you don't use target_tab_title_ anymore, you sh
oshima 2011/01/21 21:54:21 agreed.
rkc 2011/01/22 00:22:13 Done.
rkc 2011/01/22 00:22:13 Done.
target_tab_url_ = target_tab->GetURL().spec();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698