summaryrefslogtreecommitdiffstats
path: root/chrome/browser/bug_report_data.cc
diff options
context:
space:
mode:
authorrkc@chromium.org <rkc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-25 01:18:17 +0000
committerrkc@chromium.org <rkc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-01-25 01:18:17 +0000
commitc566118b1c4740cbb52511065a315d1f35fbeb39 (patch)
treee02bbf7ab5b627ceefdff8a7b1299956f162f7db /chrome/browser/bug_report_data.cc
parenta3aa03fc7316b256129c0d3cb2609e0b20b6885f (diff)
downloadchromium_src-c566118b1c4740cbb52511065a315d1f35fbeb39.zip
chromium_src-c566118b1c4740cbb52511065a315d1f35fbeb39.tar.gz
chromium_src-c566118b1c4740cbb52511065a315d1f35fbeb39.tar.bz2
Disable sending of page title in Chrome reports.
Page title can leak privacy information hence we don't really want it. BUG=66716 TEST=Sent a report to confirm page title is no longer being sent. Review URL: http://codereview.chromium.org/6366007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72441 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/bug_report_data.cc')
-rw-r--r--chrome/browser/bug_report_data.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/chrome/browser/bug_report_data.cc b/chrome/browser/bug_report_data.cc
index 26ab729..e4d4866 100644
--- a/chrome/browser/bug_report_data.cc
+++ b/chrome/browser/bug_report_data.cc
@@ -21,7 +21,6 @@ BugReportData::~BugReportData() {}
void BugReportData::UpdateData(Profile* profile,
const std::string& target_tab_url,
- const string16& target_tab_title,
const int problem_type,
const std::string& page_url,
const std::string& description,
@@ -34,7 +33,6 @@ void BugReportData::UpdateData(Profile* profile,
) {
profile_ = profile;
target_tab_url_ = target_tab_url;
- target_tab_title_ = target_tab_title;
problem_type_ = problem_type;
page_url_ = page_url;
description_ = description;