framework: asec: Rename 'Cache' -> 'Container'

Signed-off-by: San Mehat <san@google.com>
This commit is contained in:
San Mehat
2010-01-11 10:15:16 -08:00
parent ee7d552421
commit 0f5525ad3b
3 changed files with 27 additions and 27 deletions

View File

@ -888,28 +888,28 @@ class MountService extends IMountService.Stub {
}
}
public String[] getSecureCacheList() throws IllegalStateException {
public String[] getSecureContainerList() throws IllegalStateException {
return mListener.listAsec();
}
public String createSecureCache(String id, int sizeMb, String fstype,
public String createSecureContainer(String id, int sizeMb, String fstype,
String key, int ownerUid) throws IllegalStateException {
return mListener.createAsec(id, sizeMb, fstype, key, ownerUid);
}
public void finalizeSecureCache(String id) throws IllegalStateException {
public void finalizeSecureContainer(String id) throws IllegalStateException {
mListener.finalizeAsec(id);
}
public void destroySecureCache(String id) throws IllegalStateException {
public void destroySecureContainer(String id) throws IllegalStateException {
mListener.destroyAsec(id);
}
public String mountSecureCache(String id, String key, int ownerUid) throws IllegalStateException {
public String mountSecureContainer(String id, String key, int ownerUid) throws IllegalStateException {
return mListener.mountAsec(id, key, ownerUid);
}
public String getSecureCachePath(String id) throws IllegalStateException {
public String getSecureContainerPath(String id) throws IllegalStateException {
return mListener.getAsecPath(id);
}