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

Commit fb36bb1c authored by Mark Renouf's avatar Mark Renouf
Browse files

Moves Screenshots related bindings into a private dagger module

Test: mp sysuig
Change-Id: I30529e7ed850c5daa78ac38807e12b0176cbe491
parent 9b936999
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -66,12 +66,6 @@ public abstract class DefaultServiceBinder {
    @ClassKey(SystemUIAuxiliaryDumpService.class)
    public abstract Service bindSystemUIAuxiliaryDumpService(SystemUIAuxiliaryDumpService service);

    /** */
    @Binds
    @IntoMap
    @ClassKey(TakeScreenshotService.class)
    public abstract Service bindTakeScreenshotService(TakeScreenshotService service);

    /** Inject into RecordingService */
    @Binds
    @IntoMap
+2 −0
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ import com.android.systemui.fragments.FragmentService;
import com.android.systemui.log.dagger.LogModule;
import com.android.systemui.model.SysUiState;
import com.android.systemui.recents.Recents;
import com.android.systemui.screenshot.dagger.ScreenshotModule;
import com.android.systemui.settings.dagger.SettingsModule;
import com.android.systemui.stackdivider.Divider;
import com.android.systemui.statusbar.CommandQueue;
@@ -58,6 +59,7 @@ import dagger.Provides;
            DemoModeModule.class,
            LogModule.class,
            PeopleHubModule.class,
            ScreenshotModule.class,
            SensorModule.class,
            SettingsModule.class,
            SettingsUtilModule.class
+40 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2019 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.screenshot.dagger;

import android.app.Service;

import com.android.systemui.screenshot.TakeScreenshotService;

import dagger.Binds;
import dagger.Module;
import dagger.multibindings.ClassKey;
import dagger.multibindings.IntoMap;

/**
 * Defines injectable resources for Screenshots
 */
@Module
public abstract class ScreenshotModule {

    /** */
    @Binds
    @IntoMap
    @ClassKey(TakeScreenshotService.class)
    public abstract Service bindTakeScreenshotService(TakeScreenshotService service);

}