summaryrefslogtreecommitdiffstats
path: root/device.h
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-06-10 23:28:45 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-06-10 23:28:45 +0200
commite21ff08ea6a94bcd751a3cb0e6123275e0f18a2b (patch)
treefcfc300d139ccddd9de4219453358f39e9f5e9b2 /device.h
parentam 280cb6e9: Merge "Zero blocks before BLKDISCARD" (diff)
parentMerge "Split WipeData into PreWipeData and PostWipeData." (diff)
downloadandroid_bootable_recovery-e21ff08ea6a94bcd751a3cb0e6123275e0f18a2b.tar
android_bootable_recovery-e21ff08ea6a94bcd751a3cb0e6123275e0f18a2b.tar.gz
android_bootable_recovery-e21ff08ea6a94bcd751a3cb0e6123275e0f18a2b.tar.bz2
android_bootable_recovery-e21ff08ea6a94bcd751a3cb0e6123275e0f18a2b.tar.lz
android_bootable_recovery-e21ff08ea6a94bcd751a3cb0e6123275e0f18a2b.tar.xz
android_bootable_recovery-e21ff08ea6a94bcd751a3cb0e6123275e0f18a2b.tar.zst
android_bootable_recovery-e21ff08ea6a94bcd751a3cb0e6123275e0f18a2b.zip
Diffstat (limited to 'device.h')
-rw-r--r--device.h17
1 files changed, 10 insertions, 7 deletions
diff --git a/device.h b/device.h
index dad8ccd56..f74b6b047 100644
--- a/device.h
+++ b/device.h
@@ -91,13 +91,16 @@ class Device {
static const int kHighlightDown = -3;
static const int kInvokeItem = -4;
- // Called when we do a wipe data/factory reset operation (either via a
- // reboot from the main system with the --wipe_data flag, or when the
- // user boots into recovery manually and selects the option from the
- // menu.) Can perform whatever device-specific wiping actions are
- // needed. Return 0 on success. The userdata and cache partitions
- // are erased AFTER this returns (whether it returns success or not).
- virtual int WipeData() { return 0; }
+ // Called before and after we do a wipe data/factory reset operation,
+ // either via a reboot from the main system with the --wipe_data flag,
+ // or when the user boots into recovery image manually and selects the
+ // option from the menu, to perform whatever device-specific wiping
+ // actions are needed.
+ // Return true on success; returning false from PreWipeData will prevent
+ // the regular wipe, and returning false from PostWipeData will cause
+ // the wipe to be considered a failure.
+ virtual bool PreWipeData() { return true; }
+ virtual bool PostWipeData() { return true; }
private:
RecoveryUI* ui_;