diff options
author | rkc@chromium.org <rkc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-25 01:18:17 +0000 |
---|---|---|
committer | rkc@chromium.org <rkc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-25 01:18:17 +0000 |
commit | c566118b1c4740cbb52511065a315d1f35fbeb39 (patch) | |
tree | e02bbf7ab5b627ceefdff8a7b1299956f162f7db /chrome/browser/bug_report_util.cc | |
parent | a3aa03fc7316b256129c0d3cb2609e0b20b6885f (diff) | |
download | chromium_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_util.cc')
-rw-r--r-- | chrome/browser/bug_report_util.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/chrome/browser/bug_report_util.cc b/chrome/browser/bug_report_util.cc index c02bc7d..1a35b63 100644 --- a/chrome/browser/bug_report_util.cc +++ b/chrome/browser/bug_report_util.cc @@ -258,7 +258,6 @@ bool BugReportUtil::ValidFeedbackSize(const std::string& content) { // static void BugReportUtil::SendReport(Profile* profile, - const std::string& page_title_text, int problem_type, const std::string& page_url_text, const std::string& description, @@ -288,10 +287,6 @@ void BugReportUtil::SendReport(Profile* profile, // they wish common_data->set_gaia_id(0); - // Add the page title. - AddFeedbackData(&feedback_data, std::string(kPageTitleTag), - page_title_text); - #if defined(OS_CHROMEOS) // Add the user e-mail to the feedback object common_data->set_user_email(user_email_text); |