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

Side by Side Diff: chrome/installer/util/conditional_work_item_list.h

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: fix build error 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_INSTALLER_UTIL_CONDITIONAL_WORK_ITEM_LIST_H_ 5 #ifndef CHROME_INSTALLER_UTIL_CONDITIONAL_WORK_ITEM_LIST_H_
6 #define CHROME_INSTALLER_UTIL_CONDITIONAL_WORK_ITEM_LIST_H_ 6 #define CHROME_INSTALLER_UTIL_CONDITIONAL_WORK_ITEM_LIST_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
11 #include "chrome/installer/util/work_item_list.h" 11 #include "chrome/installer/util/work_item_list.h"
12 12
13 // A WorkItemList subclass that permits conditionally executing a set of 13 // A WorkItemList subclass that permits conditionally executing a set of
14 // WorkItems. 14 // WorkItems.
15 class ConditionalWorkItemList : public WorkItemList { 15 class ConditionalWorkItemList : public WorkItemList {
16 public: 16 public:
17 explicit ConditionalWorkItemList(Condition* condition); 17 explicit ConditionalWorkItemList(Condition* condition);
18 ~ConditionalWorkItemList() override; 18 ~ConditionalWorkItemList() override;
19 19
20 private:
21 // WorkItemList:
22
20 // If condition_->ShouldRun() returns true, then execute the items in this 23 // If condition_->ShouldRun() returns true, then execute the items in this
21 // list and return true iff they all succeed. If condition_->ShouldRun() 24 // list and return true iff they all succeed. If condition_->ShouldRun()
22 // returns false, does nothing and returns true. 25 // returns false, does nothing and returns true.
23 bool Do() override; 26 bool DoImpl() override;
24 27
25 // Does a rollback of the items (if any) that were run in Do. 28 // Does a rollback of the items (if any) that were run in Do.
26 void Rollback() override; 29 void RollbackImpl() override;
27 30
28 protected:
29 // Pointer to a Condition that is used to determine whether to run this 31 // Pointer to a Condition that is used to determine whether to run this
30 // WorkItemList. 32 // WorkItemList.
31 std::unique_ptr<Condition> condition_; 33 std::unique_ptr<Condition> condition_;
32 }; 34 };
33 35
34 36
35 // Pre-defined conditions: 37 // Pre-defined conditions:
36 //------------------------------------------------------------------------------ 38 //------------------------------------------------------------------------------
37 class ConditionRunIfFileExists : public WorkItem::Condition { 39 class ConditionRunIfFileExists : public WorkItem::Condition {
38 public: 40 public:
(...skipping 12 matching lines...) Expand all
51 explicit Not(WorkItem::Condition* original_condition); 53 explicit Not(WorkItem::Condition* original_condition);
52 ~Not() override; 54 ~Not() override;
53 55
54 bool ShouldRun() const override; 56 bool ShouldRun() const override;
55 57
56 private: 58 private:
57 std::unique_ptr<WorkItem::Condition> original_condition_; 59 std::unique_ptr<WorkItem::Condition> original_condition_;
58 }; 60 };
59 61
60 #endif // CHROME_INSTALLER_UTIL_CONDITIONAL_WORK_ITEM_LIST_H_ 62 #endif // CHROME_INSTALLER_UTIL_CONDITIONAL_WORK_ITEM_LIST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698