diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-01 19:46:19 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-01 19:46:19 +0000 |
commit | 8ef8d41fd3db72f5857d945055c1b629a1220b3e (patch) | |
tree | a76c8c909c694570cc0e0c8d999dcedef049e6b7 /chrome/browser | |
parent | 86c9fe10f4ced08553a334f03a294a5a7b6ff4c5 (diff) | |
download | chromium_src-8ef8d41fd3db72f5857d945055c1b629a1220b3e.zip chromium_src-8ef8d41fd3db72f5857d945055c1b629a1220b3e.tar.gz chromium_src-8ef8d41fd3db72f5857d945055c1b629a1220b3e.tar.bz2 |
browser: Get rid of static initializer in BugReportUtil.
BUG=94925
TEST=None
R=rkc@chromium.org
Review URL: http://codereview.chromium.org/7831013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99228 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/bug_report_util.cc | 8 | ||||
-rw-r--r-- | chrome/browser/bug_report_util.h | 5 |
2 files changed, 0 insertions, 13 deletions
diff --git a/chrome/browser/bug_report_util.cc b/chrome/browser/bug_report_util.cc index 8c4340a..7ac3353 100644 --- a/chrome/browser/bug_report_util.cc +++ b/chrome/browser/bug_report_util.cc @@ -174,14 +174,6 @@ void BugReportUtil::SetOSVersion(std::string* os_version) { } // static -std::string BugReportUtil::feedback_server_(""); - -// static -void BugReportUtil::SetFeedbackServer(const std::string& server) { - feedback_server_ = server; -} - -// static void BugReportUtil::DispatchFeedback(Profile* profile, std::string* post_body, int64 delay) { diff --git a/chrome/browser/bug_report_util.h b/chrome/browser/bug_report_util.h index a6fc808..52376d2 100644 --- a/chrome/browser/bug_report_util.h +++ b/chrome/browser/bug_report_util.h @@ -55,9 +55,6 @@ class BugReportUtil { // all the call sites or making it a wrapper around another util. static void SetOSVersion(std::string *os_version); - // This sets the address of the feedback server to be used by SendReport - static void SetFeedbackServer(const std::string& server); - // Send the feedback report after the specified delay static void DispatchFeedback(Profile* profile, std::string* feedback_data, int64 delay); @@ -104,8 +101,6 @@ class BugReportUtil { static bool ValidFeedbackSize(const std::string& content); #endif - static std::string feedback_server_; - DISALLOW_IMPLICIT_CONSTRUCTORS(BugReportUtil); }; |