aboutsummaryrefslogtreecommitdiff
path: root/service/src/com/android/car/ICarImpl.java
diff options
context:
space:
mode:
Diffstat (limited to 'service/src/com/android/car/ICarImpl.java')
-rw-r--r--service/src/com/android/car/ICarImpl.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/service/src/com/android/car/ICarImpl.java b/service/src/com/android/car/ICarImpl.java
index 3ca5cde12f..61c63d0c5a 100644
--- a/service/src/com/android/car/ICarImpl.java
+++ b/service/src/com/android/car/ICarImpl.java
@@ -248,6 +248,11 @@ public class ICarImpl extends ICar.Stub {
mCarUXRestrictionsService = constructWithTrace(t, CarUxRestrictionsManagerService.class,
() -> new CarUxRestrictionsManagerService(serviceContext, mCarDrivingStateService,
mCarPropertyService, mCarOccupantZoneService));
+ mCarActivityService = constructWithTrace(t, CarActivityService.class,
+ () -> new CarActivityService(serviceContext));
+ mCarPackageManagerService = constructWithTrace(t, CarPackageManagerService.class,
+ () -> new CarPackageManagerService(serviceContext, mCarUXRestrictionsService,
+ mCarActivityService, mCarOccupantZoneService));
if (carUserService != null) {
mCarUserService = carUserService;
CarLocalServices.addService(CarUserService.class, carUserService);
@@ -256,7 +261,7 @@ public class ICarImpl extends ICar.Stub {
int maxRunningUsers = UserManagerHelper.getMaxRunningUsers(serviceContext);
mCarUserService = constructWithTrace(t, CarUserService.class,
() -> new CarUserService(serviceContext, mHal.getUserHal(), userManager,
- maxRunningUsers, mCarUXRestrictionsService));
+ maxRunningUsers, mCarUXRestrictionsService, mCarPackageManagerService));
}
if (mFeatureController.isFeatureEnabled(Car.EXPERIMENTAL_CAR_USER_SERVICE)) {
mExperimentalCarUserService = constructWithTrace(t, ExperimentalCarUserService.class,
@@ -284,11 +289,6 @@ public class ICarImpl extends ICar.Stub {
} else {
mOccupantAwarenessService = null;
}
- mCarActivityService = constructWithTrace(t, CarActivityService.class,
- () -> new CarActivityService(serviceContext));
- mCarPackageManagerService = constructWithTrace(t, CarPackageManagerService.class,
- () -> new CarPackageManagerService(serviceContext, mCarUXRestrictionsService,
- mCarActivityService, mCarOccupantZoneService));
mPerUserCarServiceHelper = constructWithTrace(
t, PerUserCarServiceHelper.class,
() -> new PerUserCarServiceHelper(serviceContext, mCarUserService));