diff options
author | Scott Mertz <scott@cyngn.com> | 2016-07-25 11:13:15 -0700 |
---|---|---|
committer | Scott Mertz <scott@cyngn.com> | 2016-07-25 14:28:45 -0700 |
commit | 75c84499bde3e8e0555cd9fda1cde5d758a8b8d4 (patch) | |
tree | 0d08d97e82c7082f4859151c61cdbdeb6aa72ca0 /core | |
parent | 5d7b76ed75bb5ef6f1f8a0d72c684ed9c1d55040 (diff) | |
download | frameworks_base-75c84499bde3e8e0555cd9fda1cde5d758a8b8d4.zip frameworks_base-75c84499bde3e8e0555cd9fda1cde5d758a8b8d4.tar.gz frameworks_base-75c84499bde3e8e0555cd9fda1cde5d758a8b8d4.tar.bz2 |
Factory reset: Wipe media by default
These hidden APIs are called from some public APIs (DevicePolicyManager),
so we shouldn't change the default behavior.
The intent API should also be considered public, so change that as well.
FEIJ-1610
Change-Id: Ib9591c122dbe6168e7e237444c754b9608be0953
Diffstat (limited to 'core')
-rw-r--r-- | core/java/android/os/RecoverySystem.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/os/RecoverySystem.java b/core/java/android/os/RecoverySystem.java index a10b1ec..d277e65 100644 --- a/core/java/android/os/RecoverySystem.java +++ b/core/java/android/os/RecoverySystem.java @@ -377,18 +377,18 @@ public class RecoverySystem { * @throws SecurityException if the current user is not allowed to wipe data. */ public static void rebootWipeUserData(Context context) throws IOException { - rebootWipeUserData(context, false, context.getPackageName(), false); + rebootWipeUserData(context, false, context.getPackageName(), true); } /** {@hide} */ public static void rebootWipeUserData(Context context, String reason) throws IOException { - rebootWipeUserData(context, false, reason, false); + rebootWipeUserData(context, false, reason, true); } /** {@hide} */ public static void rebootWipeUserData(Context context, boolean shutdown) throws IOException { - rebootWipeUserData(context, shutdown, context.getPackageName(), false); + rebootWipeUserData(context, shutdown, context.getPackageName(), true); } /** |