Rename [I]DropBox[Service] to [I]DropBoxManager[Service].

Un-hide the DropBoxManager interface, and update the public API accordingly.
This commit is contained in:
Dan Egnor
2009-11-12 11:32:50 -08:00
parent 897a744bb7
commit f18a01c77e
11 changed files with 468 additions and 134 deletions

View File

@@ -297,9 +297,9 @@ class ServerThread extends Thread {
try {
Log.i(TAG, "DropBox Service");
ServiceManager.addService(Context.DROPBOX_SERVICE,
new DropBoxService(context, new File("/data/system/dropbox")));
new DropBoxManagerService(context, new File("/data/system/dropbox")));
} catch (Throwable e) {
Log.e(TAG, "Failure starting DropBox Service", e);
Log.e(TAG, "Failure starting DropBoxManagerService", e);
}
try {