Moves Screenshots related bindings into a private dagger module

Test: mp sysuig
Change-Id: I30529e7ed850c5daa78ac38807e12b0176cbe491
This commit is contained in:
Mark Renouf
2020-08-18 11:46:03 -04:00
parent 9b93699911
commit fb36bb1c51
3 changed files with 42 additions and 6 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -0,0 +1,40 @@
/*
* 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);
}