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

Unified Diff: chrome/installer/util/work_item_list.cc

Issue 6598065: Add rollback support to DeleteRegKeyWorkItem.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 10 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/installer/util/delete_reg_key_work_item_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/work_item_list.cc
===================================================================
--- chrome/installer/util/work_item_list.cc (revision 76372)
+++ chrome/installer/util/work_item_list.cc (working copy)
@@ -208,7 +208,8 @@
executed_list_.push_front(work_item);
work_item->set_ignore_failure(true);
if (!work_item->Do()) {
- LOG(ERROR) << "NoRollbackWorkItemList: item execution failed.";
+ LOG(ERROR) << "NoRollbackWorkItemList: item execution failed "
+ << work_item->log_message();
result = false;
}
}
@@ -223,4 +224,3 @@
void NoRollbackWorkItemList::Rollback() {
NOTREACHED() << "Can't rollback a NoRollbackWorkItemList";
}
-
« no previous file with comments | « chrome/installer/util/delete_reg_key_work_item_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698