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

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

Issue 1976443005: Revert of Add best-effort/allow rollback flags on WorkItem. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@simple_list_tests
Patch Set: Created 4 years, 7 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/callback_work_item.h ('k') | chrome/installer/util/conditional_work_item_list.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/installer/util/callback_work_item.cc
diff --git a/chrome/installer/util/callback_work_item.cc b/chrome/installer/util/callback_work_item.cc
index 34376eab71e5388f73ef2cadb2621c0b583c5c24..e2dbbec3ab9f89744c3f444764938d86cf119cd0 100644
--- a/chrome/installer/util/callback_work_item.cc
+++ b/chrome/installer/util/callback_work_item.cc
@@ -17,7 +17,7 @@
CallbackWorkItem::~CallbackWorkItem() {
}
-bool CallbackWorkItem::DoImpl() {
+bool CallbackWorkItem::Do() {
DCHECK_EQ(roll_state_, RS_UNDEFINED);
roll_state_ = RS_FORWARD;
@@ -27,7 +27,7 @@
return result;
}
-void CallbackWorkItem::RollbackImpl() {
+void CallbackWorkItem::Rollback() {
DCHECK_EQ(roll_state_, RS_UNDEFINED);
roll_state_ = RS_BACKWARD;
« no previous file with comments | « chrome/installer/util/callback_work_item.h ('k') | chrome/installer/util/conditional_work_item_list.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698