Remove all traces of the old checkin service (and its associated parental

control interfaces) from the framework.
This commit is contained in:
Dan Egnor
2010-02-13 10:38:55 -08:00
parent 5b31fdae60
commit 1c9131c91f
12 changed files with 3 additions and 599 deletions

View File

@@ -328,19 +328,6 @@ class ServerThread extends Thread {
Log.e(TAG, "Failure starting DropBoxManagerService", e);
}
try {
Log.i(TAG, "Checkin Service");
Intent intent = new Intent().setComponent(new ComponentName(
"com.google.android.server.checkin",
"com.google.android.server.checkin.CheckinService"));
if (context.startService(intent) == null) {
Log.w(TAG, "Using fallback Checkin Service.");
ServiceManager.addService("checkin", new FallbackCheckinService(context));
}
} catch (Throwable e) {
Log.e(TAG, "Failure starting Checkin Service", e);
}
try {
Log.i(TAG, "Wallpaper Service");
wallpaper = new WallpaperManagerService(context);