diff options
| author | 2017-06-23 04:19:10 +0000 | |
|---|---|---|
| committer | 2017-06-23 04:19:10 +0000 | |
| commit | 41b743d8ad10a48f7be164f0943b01047928a987 (patch) | |
| tree | a86eb857228e4b57503eeb1e9d953ff92ea347ac | |
| parent | f71b0bedcf7f5e5c8ac0a50d72771dfb45ae9f0c (diff) | |
| parent | f14c1e12cf7c9d48e0111829b202998ff2c09877 (diff) | |
Merge "Add in the getCacheQuotaBytes method to wrapper." into oc-dev
am: f14c1e12cf
Change-Id: I48c0c952d4679304d1adcda238e93c6bdd133110
| -rw-r--r-- | packages/SettingsLib/src/com/android/settingslib/applications/StorageStatsSource.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/packages/SettingsLib/src/com/android/settingslib/applications/StorageStatsSource.java b/packages/SettingsLib/src/com/android/settingslib/applications/StorageStatsSource.java index a8f6f025b6d5..8fc9fa6a4f26 100644 --- a/packages/SettingsLib/src/com/android/settingslib/applications/StorageStatsSource.java +++ b/packages/SettingsLib/src/com/android/settingslib/applications/StorageStatsSource.java @@ -54,6 +54,10 @@ public class StorageStatsSource { mStorageStatsManager.queryStatsForPackage(volumeUuid, packageName, user)); } + public long getCacheQuotaBytes(String volumeUuid, int uid) { + return mStorageStatsManager.getCacheQuotaBytes(volumeUuid, uid); + } + /** * Static class that provides methods for querying the amount of external storage available as * well as breaking it up into several media types. |