donut snapshot

This commit is contained in:
Jean-Baptiste Queru
2009-07-21 11:16:54 -07:00
parent 4cf03d381b
commit cf4550c319
1032 changed files with 81415 additions and 15221 deletions

View File

@@ -97,6 +97,9 @@ class ServerThread extends Thread {
// Critical services...
try {
Log.i(TAG, "Starting Entropy Service.");
ServiceManager.addService("entropy", new EntropyService());
Log.i(TAG, "Starting Power Manager.");
power = new PowerManagerService();
ServiceManager.addService(Context.POWER_SERVICE, power);
@@ -227,6 +230,14 @@ class ServerThread extends Thread {
Log.e(TAG, "Failure starting Connectivity Service", e);
}
try {
Log.i(TAG, "Starting Accessibility Manager.");
ServiceManager.addService(Context.ACCESSIBILITY_SERVICE,
new AccessibilityManagerService(context));
} catch (Throwable e) {
Log.e(TAG, "Failure starting Accessibility Manager", e);
}
try {
Log.i(TAG, "Starting Notification Manager.");
ServiceManager.addService(Context.NOTIFICATION_SERVICE,