blob: 38f2f5e8a3a1cdb63bb95cfdaff5fc5af0042173 [file] [log] [blame]
Govinda Wasserman2e86fb62019-08-13 11:35:44 -04001/*
2 * Copyright (C) 2019 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 */
16
17package com.android.systemui;
18
19import android.annotation.Nullable;
20import android.content.Context;
21import android.content.pm.PackageManager;
22
Govinda Wasserman61c92d62019-09-05 16:32:23 -040023import com.android.systemui.assist.AssistModule;
Vinit Nayak59b114e62019-08-12 11:50:00 -070024import com.android.systemui.model.SysUiState;
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040025import com.android.systemui.plugins.statusbar.StatusBarStateController;
26import com.android.systemui.statusbar.phone.KeyguardLiftController;
Dave Mankoff63a12822019-09-16 14:38:06 -040027import com.android.systemui.util.sensors.AsyncSensorManager;
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040028
29import javax.inject.Singleton;
30
31import dagger.Module;
32import dagger.Provides;
33
34/**
35 * A dagger module for injecting components of System UI that are not overridden by the System UI
36 * implementation.
37 */
Govinda Wasserman61c92d62019-09-05 16:32:23 -040038@Module(includes = {AssistModule.class})
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040039public abstract class SystemUIModule {
40
41 @Singleton
42 @Provides
43 @Nullable
44 static KeyguardLiftController provideKeyguardLiftController(Context context,
45 StatusBarStateController statusBarStateController,
46 AsyncSensorManager asyncSensorManager) {
47 if (!context.getPackageManager().hasSystemFeature(PackageManager.FEATURE_FACE)) {
48 return null;
49 }
Dave Mankoffe2294692019-08-14 11:53:13 -040050 return new KeyguardLiftController(statusBarStateController, asyncSensorManager);
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040051 }
Vinit Nayak59b114e62019-08-12 11:50:00 -070052
53
54 @Singleton
55 @Provides
56 static SysUiState provideSysUiState() {
57 return new SysUiState();
58 }
Govinda Wasserman2e86fb62019-08-13 11:35:44 -040059}