diff options
author | Winson Chung <winsonc@google.com> | 2019-01-08 17:41:55 -0800 |
---|---|---|
committer | Winson Chung <winsonc@google.com> | 2019-01-10 16:35:13 -0800 |
commit | 3fb0f258d344ea0d73dc67f941719a2c9d6cdeb6 (patch) | |
tree | 14aa3bfd0e4b244beb8c03b7ccaa645470c93b19 /services/java/com/android/server/SystemServer.java | |
parent | 54e91344e2a0072c40d09405fe5a295467b36c07 (diff) |
Initial commit of Content Suggestions (overview long press) Manager.
Test: compile
Bug: 120865921
Change-Id: I9f8310112bedc883406f0f50a99041f542036fd9
Diffstat (limited to 'services/java/com/android/server/SystemServer.java')
-rw-r--r-- | services/java/com/android/server/SystemServer.java | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java index ced4261821d9..1fef5b0ba892 100644 --- a/services/java/com/android/server/SystemServer.java +++ b/services/java/com/android/server/SystemServer.java @@ -262,6 +262,8 @@ public final class SystemServer { "com.android.server.adb.AdbService$Lifecycle"; private static final String APP_PREDICTION_MANAGER_SERVICE_CLASS = "com.android.server.appprediction.AppPredictionManagerService"; + private static final String CONTENT_SUGGESTIONS_SERVICE_CLASS = + "com.android.server.contentsuggestions.ContentSuggestionsManagerService"; private static final String PERSISTENT_DATA_BLOCK_PROP = "ro.frp.pst"; @@ -1160,6 +1162,11 @@ public final class SystemServer { mSystemServiceManager.startService(APP_PREDICTION_MANAGER_SERVICE_CLASS); traceEnd(); + // Content suggestions manager service + traceBeginAndSlog("StartContentSuggestionsService"); + mSystemServiceManager.startService(CONTENT_SUGGESTIONS_SERVICE_CLASS); + traceEnd(); + // NOTE: ClipboardService indirectly depends on IntelligenceService traceBeginAndSlog("StartClipboardService"); mSystemServiceManager.startService(ClipboardService.class); |