Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit da23c5ec authored by Bryce Lee's avatar Bryce Lee
Browse files

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
parent b448a897
Loading
Loading
Loading
Loading
+26 −0
Original line number Diff line number Diff line
/*
 * 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 {
}
+7 −1
Original line number Diff line number Diff line
@@ -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