use of com.android.internal.os.IDropBoxManagerService in project android_frameworks_base by ParanoidAndroid.
the class ContextImpl method createDropBoxManager.
/* package */
static DropBoxManager createDropBoxManager() {
IBinder b = ServiceManager.getService(DROPBOX_SERVICE);
IDropBoxManagerService service = IDropBoxManagerService.Stub.asInterface(b);
if (service == null) {
// DROPBOX_SERVICE is registered.
return null;
}
return new DropBoxManager(service);
}
use of com.android.internal.os.IDropBoxManagerService in project XobotOS by xamarin.
the class ContextImpl method createDropBoxManager.
/* package */
static DropBoxManager createDropBoxManager() {
IBinder b = ServiceManager.getService(DROPBOX_SERVICE);
IDropBoxManagerService service = IDropBoxManagerService.Stub.asInterface(b);
if (service == null) {
// DROPBOX_SERVICE is registered.
return null;
}
return new DropBoxManager(service);
}
Aggregations