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

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: address comments 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
« no previous file with comments | « chrome/browser/bug_report_util.h ('k') | chrome/browser/chromeos/customization_document.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..227f427419529a9b518fe8553d57d7bcd0487518 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);
« no previous file with comments | « chrome/browser/bug_report_util.h ('k') | chrome/browser/chromeos/customization_document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698