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

Unified Diff: chrome/browser/bug_report_util.cc

Issue 7324017: Split SystemAccess into TimezoneSettings, StatisticsProvider, and SyslogsProvider. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add a missing include Created 9 years, 5 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
Index: chrome/browser/bug_report_util.cc
diff --git a/chrome/browser/bug_report_util.cc b/chrome/browser/bug_report_util.cc
index cedcbec960d75689ef74aa3ff677ad4efbc4d823..58aca5df4b999d1bf7f38387aa921b4345e67767 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,7 +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();
+ for (chromeos::system::LogDictionaryType::const_iterator i =
+ sys_info->begin();
i != sys_info->end(); ++i)
stevenjb 2011/07/08 22:38:09 nit: combine above two lines and fix indent.
satorux1 2011/07/09 06:21:27 Done.
if (!CommandLine::ForCurrentProcess()->HasSwitch(
switches::kCompressSystemFeedback) || ValidFeedbackSize(i->second)) {

Powered by Google App Engine
This is Rietveld 408576698