From da23c5ecc72dd5379df887c1d893c3fec5b97579 Mon Sep 17 00:00:00 2001 From: Bryce Lee Date: Tue, 13 Jul 2021 10:00:50 -0700 Subject: [PATCH] Introduce CommunalModule. This changelist introduces the CommunalModule, which will house communal-related components. Bug: 193536074 Test: manual - ensured build and run not affected. Change-Id: I5a72790511601c1aea599f770658b826d6a0c34a --- .../communal/dagger/CommunalModule.java | 26 +++++++++++++++++++ .../systemui/dagger/SystemUIBinder.java | 8 +++++- 2 files changed, 33 insertions(+), 1 deletion(-) create mode 100644 packages/SystemUI/src/com/android/systemui/communal/dagger/CommunalModule.java diff --git a/packages/SystemUI/src/com/android/systemui/communal/dagger/CommunalModule.java b/packages/SystemUI/src/com/android/systemui/communal/dagger/CommunalModule.java new file mode 100644 index 0000000000000..cb4eddd49c8ab --- /dev/null +++ b/packages/SystemUI/src/com/android/systemui/communal/dagger/CommunalModule.java @@ -0,0 +1,26 @@ +/* + * Copyright (C) 2021 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.systemui.communal.dagger; + +import dagger.Module; + +/** + * Dagger Module providing Communal-related functionality. + */ +@Module +public class CommunalModule { +} diff --git a/packages/SystemUI/src/com/android/systemui/dagger/SystemUIBinder.java b/packages/SystemUI/src/com/android/systemui/dagger/SystemUIBinder.java index 1ed881993800b..40768ec791dd7 100644 --- a/packages/SystemUI/src/com/android/systemui/dagger/SystemUIBinder.java +++ b/packages/SystemUI/src/com/android/systemui/dagger/SystemUIBinder.java @@ -23,6 +23,7 @@ import com.android.systemui.SystemUI; import com.android.systemui.accessibility.SystemActions; import com.android.systemui.accessibility.WindowMagnification; import com.android.systemui.biometrics.AuthController; +import com.android.systemui.communal.dagger.CommunalModule; import com.android.systemui.globalactions.GlobalActionsComponent; import com.android.systemui.keyguard.KeyguardViewMediator; import com.android.systemui.keyguard.dagger.KeyguardModule; @@ -51,7 +52,12 @@ import dagger.multibindings.IntoMap; /** * SystemUI objects that are injectable should go here. */ -@Module(includes = {RecentsModule.class, StatusBarModule.class, KeyguardModule.class}) +@Module(includes = { + RecentsModule.class, + StatusBarModule.class, + KeyguardModule.class, + CommunalModule.class, +}) public abstract class SystemUIBinder { /** Inject into AuthController. */ @Binds