diff options
author | Tianjie Xu <xunchang@google.com> | 2019-05-22 23:48:35 +0200 |
---|---|---|
committer | Tianjie Xu <xunchang@google.com> | 2019-05-22 23:58:28 +0200 |
commit | 27556d089f8496c2acb72182ce7add94938eb749 (patch) | |
tree | 7fca14e5fe7b8178a996501df0515ddabcfd9ed2 /updater/include | |
parent | Merge "recovery: report compliant reboot reason" (diff) | |
download | android_bootable_recovery-27556d089f8496c2acb72182ce7add94938eb749.tar android_bootable_recovery-27556d089f8496c2acb72182ce7add94938eb749.tar.gz android_bootable_recovery-27556d089f8496c2acb72182ce7add94938eb749.tar.bz2 android_bootable_recovery-27556d089f8496c2acb72182ce7add94938eb749.tar.lz android_bootable_recovery-27556d089f8496c2acb72182ce7add94938eb749.tar.xz android_bootable_recovery-27556d089f8496c2acb72182ce7add94938eb749.tar.zst android_bootable_recovery-27556d089f8496c2acb72182ce7add94938eb749.zip |
Diffstat (limited to 'updater/include')
-rw-r--r-- | updater/include/updater/updater.h | 4 | ||||
-rw-r--r-- | updater/include/updater/updater_runtime.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/updater/include/updater/updater.h b/updater/include/updater/updater.h index 7bbecbc57..08816bf36 100644 --- a/updater/include/updater/updater.h +++ b/updater/include/updater/updater.h @@ -30,15 +30,11 @@ #include "otautil/error_code.h" #include "otautil/sysutil.h" -class UpdaterRuntime; - class Updater : public UpdaterInterface { public: explicit Updater(std::unique_ptr<UpdaterRuntimeInterface> run_time) : runtime_(std::move(run_time)) {} - Updater(); - ~Updater() override; // Memory-maps the OTA package and opens it as a zip file. Also sets up the command pipe and diff --git a/updater/include/updater/updater_runtime.h b/updater/include/updater/updater_runtime.h index 6cd0ffb48..e97eb49b1 100644 --- a/updater/include/updater/updater_runtime.h +++ b/updater/include/updater/updater_runtime.h @@ -25,7 +25,6 @@ #include "edify/updater_runtime_interface.h" struct selabel_handle; -struct Partition; class UpdaterRuntime : public UpdaterRuntimeInterface { public: |