Chromium Code Reviews| 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)) { |