diff options
author | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-10 06:24:52 +0000 |
---|---|---|
committer | satorux@chromium.org <satorux@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-10 06:24:52 +0000 |
commit | d43970a7ceee5fc5433787b0f28b64234a4039f2 (patch) | |
tree | 0cfd2581dc24c226cab75da6b683458dac540199 /chrome/browser/bug_report_util.cc | |
parent | 7237bfcc6ded653b4ae2defaee6f1303b1744ede (diff) | |
download | chromium_src-d43970a7ceee5fc5433787b0f28b64234a4039f2.zip chromium_src-d43970a7ceee5fc5433787b0f28b64234a4039f2.tar.gz chromium_src-d43970a7ceee5fc5433787b0f28b64234a4039f2.tar.bz2 |
Split SystemAccess into TimezoneSettings, StatisticsProvider, and SyslogsProvider.
SystemAccess contained three separate things: timezone settings,
statistics provider, and syslogs provider. We should have them
in separate classes.
This patch touches many files but changes are mechanical. No logic
changes introduced.
BUG=none
TEST=chrome builds and try bots pass
Review URL: http://codereview.chromium.org/7324017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@91971 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/bug_report_util.cc')
-rw-r--r-- | chrome/browser/bug_report_util.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/bug_report_util.cc b/chrome/browser/bug_report_util.cc index cedcbec..227f427 100644 --- a/chrome/browser/bug_report_util.cc +++ b/chrome/browser/bug_report_util.cc @@ -260,7 +260,7 @@ void BugReportUtil::SendReport(Profile* profile, const std::string& user_email_text, const char* zipped_logs_data, int zipped_logs_length, - const chromeos::LogDictionaryType* const sys_info) { + const chromeos::system::LogDictionaryType* const sys_info) { #else int png_height) { #endif @@ -326,8 +326,8 @@ void BugReportUtil::SendReport(Profile* profile, #if defined(OS_CHROMEOS) if (sys_info) { // Add the product specific data - for (chromeos::LogDictionaryType::const_iterator i = sys_info->begin(); - i != sys_info->end(); ++i) + for (chromeos::system::LogDictionaryType::const_iterator i = + sys_info->begin(); i != sys_info->end(); ++i) if (!CommandLine::ForCurrentProcess()->HasSwitch( switches::kCompressSystemFeedback) || ValidFeedbackSize(i->second)) { AddFeedbackData(&feedback_data, i->first, i->second); |