diff options
| author | Christopher Tate <ctate@google.com> | 2015-06-17 13:07:46 -0700 |
|---|---|---|
| committer | Christopher Tate <ctate@google.com> | 2015-06-22 17:20:26 -0700 |
| commit | 6038d15cbc7f4648ceaadf5f15d1928c4899f98e (patch) | |
| tree | d891140a87f32ba2567206920963121691c9fe39 /core/java/android | |
| parent | f3e8dca84b51e6eab1cc1384a5baabb0bae433a1 (diff) | |
| download | frameworks_base-6038d15cbc7f4648ceaadf5f15d1928c4899f98e.zip frameworks_base-6038d15cbc7f4648ceaadf5f15d1928c4899f98e.tar.gz frameworks_base-6038d15cbc7f4648ceaadf5f15d1928c4899f98e.tar.bz2 | |
Back up / restore default app and intent filter verification state
For apps not present on device, the state inherited from the ancestral
device is applied when the app is ultimately installed.
Bug 20144515
Change-Id: Ie05b4f1751357fc62f14e259da174b8cf465e913
Diffstat (limited to 'core/java/android')
| -rw-r--r-- | core/java/android/content/pm/IPackageManager.aidl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/content/pm/IPackageManager.aidl b/core/java/android/content/pm/IPackageManager.aidl index 0c07bc3..2dbcde9 100644 --- a/core/java/android/content/pm/IPackageManager.aidl +++ b/core/java/android/content/pm/IPackageManager.aidl @@ -282,6 +282,10 @@ interface IPackageManager { */ byte[] getPreferredActivityBackup(int userId); void restorePreferredActivities(in byte[] backup, int userId); + byte[] getDefaultAppsBackup(int userId); + void restoreDefaultApps(in byte[] backup, int userId); + byte[] getIntentFilterVerificationBackup(int userId); + void restoreIntentFilterVerification(in byte[] backup, int userId); /** * Report the set of 'Home' activity candidates, plus (if any) which of them |
