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

Unified Diff: chromecast/crash/linux/synchronized_minidump_manager.cc

Issue 1227963002: Replace system IO calls in chromecast/crash with Chrome utilities. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Address smaller issues. Created 5 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 | « chromecast/crash/linux/minidump_generator.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/crash/linux/synchronized_minidump_manager.cc
diff --git a/chromecast/crash/linux/synchronized_minidump_manager.cc b/chromecast/crash/linux/synchronized_minidump_manager.cc
index 358427a2dd31a3532e82a9d6703bd78f00f161e2..3a606c345932ae61ba733160e969ae5fb67051bc 100644
--- a/chromecast/crash/linux/synchronized_minidump_manager.cc
+++ b/chromecast/crash/linux/synchronized_minidump_manager.cc
@@ -156,8 +156,7 @@ int SynchronizedMinidumpManager::ParseLockFile() {
if (info->valid() && info->crashed_process_dump().size() > 0) {
dumps->push_back(info.Pass());
} else {
- LOG(WARNING) << "Entry is not valid: " << entry;
- return -1;
+ LOG(WARNING) << "Ignoring invalid entry: " << entry;
wzhong 2015/07/16 22:46:44 Remove {} for simple if else statement.
slan 2015/07/16 22:57:31 Done.
}
}
« no previous file with comments | « chromecast/crash/linux/minidump_generator.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698