commit | 6bb8baa9299a1f78e53f6935f1cb0e373c6b9013 | [log] [tgz] |
---|---|---|
author | Daniel Zheng <zhengdaniel@google.com> | Fri Mar 03 07:14:23 2023 +0000 |
committer | Daniel Zheng <zhengdaniel@google.com> | Wed Mar 08 23:07:50 2023 +0000 |
tree | f90e170d78c2c10e04ffa185c53626c23d05dab3 | |
parent | 47d70a55598998005b7c243c92d0ea405eb184c3 [diff] [blame] |
Added support for Update Super Task Test: tested flashall on raven Bug: 194686221 Change-Id: Ifc99af77f9235bf56a549f53e7d43575686fb42b
diff --git a/fastboot/task.h b/fastboot/task.h index 7acb3d5..630278a 100644 --- a/fastboot/task.h +++ b/fastboot/task.h
@@ -70,3 +70,12 @@ std::unique_ptr<SuperFlashHelper> helper_; SparsePtr sparse_layout_; }; + +class UpdateSuperTask : public Task { + public: + UpdateSuperTask(FlashingPlan* fp); + void Run() override; + + private: + FlashingPlan* fp_; +};