summaryrefslogtreecommitdiffstats
path: root/services/java/com/android/server/SystemServer.java
diff options
context:
space:
mode:
Diffstat (limited to 'services/java/com/android/server/SystemServer.java')
-rw-r--r--services/java/com/android/server/SystemServer.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java
index 894c4d0..3dd22b0 100644
--- a/services/java/com/android/server/SystemServer.java
+++ b/services/java/com/android/server/SystemServer.java
@@ -346,6 +346,7 @@ class ServerThread extends Thread {
StatusBarManagerService statusBar = null;
InputMethodManagerService imm = null;
AppWidgetService appWidget = null;
+ ProfileManagerService profile = null;
NotificationManagerService notification = null;
WallpaperManagerService wallpaper = null;
LocationManagerService location = null;
@@ -553,6 +554,14 @@ class ServerThread extends Thread {
}
try {
+ Slog.i(TAG, "Profile Manager");
+ profile = new ProfileManagerService(context);
+ ServiceManager.addService(Context.PROFILE_SERVICE, profile);
+ } catch (Throwable e) {
+ Slog.e(TAG, "Failure starting Profile Manager", e);
+ }
+
+ try {
Slog.i(TAG, "Notification Manager");
notification = new NotificationManagerService(context, statusBar, lights);
ServiceManager.addService(Context.NOTIFICATION_SERVICE, notification);