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

Unified Diff: chrome/installer/setup/update_active_setup_version_work_item.cc

Issue 1882923003: 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, 8 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
Index: chrome/installer/setup/update_active_setup_version_work_item.cc
diff --git a/chrome/installer/setup/update_active_setup_version_work_item.cc b/chrome/installer/setup/update_active_setup_version_work_item.cc
index 7372675a6fe013ac72632f24f30df1dfb54cb1b4..293c82a0139ee926c2e800d0d03d04c9fab0cd6f 100644
--- a/chrome/installer/setup/update_active_setup_version_work_item.cc
+++ b/chrome/installer/setup/update_active_setup_version_work_item.cc
@@ -38,11 +38,11 @@ UpdateActiveSetupVersionWorkItem::UpdateActiveSetupVersionWorkItem(
operation_(operation) {
}
-bool UpdateActiveSetupVersionWorkItem::Do() {
+bool UpdateActiveSetupVersionWorkItem::DoImpl() {
return set_reg_value_work_item_.Do();
grt (UTC plus 2) 2016/04/27 17:29:16 should this propagate its state to the WI it deleg
fdoray 2016/05/02 20:10:00 Done.
}
-void UpdateActiveSetupVersionWorkItem::Rollback() {
+void UpdateActiveSetupVersionWorkItem::RollbackImpl() {
set_reg_value_work_item_.Rollback();
}

Powered by Google App Engine
This is Rietveld 408576698