diff options
Diffstat (limited to 'common/boot_control_interface.h')
-rw-r--r-- | common/boot_control_interface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/boot_control_interface.h b/common/boot_control_interface.h index 41fe4eaf..3906e2f5 100644 --- a/common/boot_control_interface.h +++ b/common/boot_control_interface.h @@ -85,6 +85,9 @@ class BootControlInterface { // of the operation. virtual bool MarkBootSuccessfulAsync(base::Callback<void(bool)> callback) = 0; + // Check if |slot| is marked boot successfully. + virtual bool IsSlotMarkedSuccessful(Slot slot) const = 0; + // Return the dynamic partition control interface. virtual DynamicPartitionControlInterface* GetDynamicPartitionControl() = 0; |