blob: 027a302a325e5fdb1dd28fcde35cbbdd19398d7a [file] [log] [blame]
Tony Mak1b708e62017-10-12 10:59:11 +01001/*
2 * Copyright (C) 2017 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Tony Makb0d22622018-01-18 12:49:49 +000016package com.android.server.pm;
Tony Mak1b708e62017-10-12 10:59:11 +010017
18import android.content.Context;
19
20import com.android.server.SystemService;
21
22public class CrossProfileAppsService extends SystemService {
23 private CrossProfileAppsServiceImpl mServiceImpl;
24
25 public CrossProfileAppsService(Context context) {
26 super(context);
27 mServiceImpl = new CrossProfileAppsServiceImpl(context);
28 }
29
30 @Override
31 public void onStart() {
32 publishBinderService(Context.CROSS_PROFILE_APPS_SERVICE, mServiceImpl);
33 }
34}