diff options
Diffstat (limited to 'aosp/update_attempter_android.h')
-rw-r--r-- | aosp/update_attempter_android.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/aosp/update_attempter_android.h b/aosp/update_attempter_android.h index 5d832e0a..4c5c70b7 100644 --- a/aosp/update_attempter_android.h +++ b/aosp/update_attempter_android.h @@ -100,6 +100,8 @@ class UpdateAttempterAndroid brillo::ErrorPtr* error) override; bool resetShouldSwitchSlotOnReboot(brillo::ErrorPtr* error) override; + bool SetPerformanceMode(bool enable, brillo::ErrorPtr* error) override; + // ActionProcessorDelegate methods: void ProcessingDone(const ActionProcessor* processor, ErrorCode code) override; @@ -282,6 +284,8 @@ class UpdateAttempterAndroid // The path to the zip file with X509 certificates. std::string update_certificates_path_{constants::kUpdateCertificatesPath}; + bool performance_mode_ = false; + DISALLOW_COPY_AND_ASSIGN(UpdateAttempterAndroid); }; |