Loading packages/SystemUI/src/com/android/systemui/dagger/DefaultServiceBinder.java +0 −6 Original line number Diff line number Diff line Loading @@ -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 Loading packages/SystemUI/src/com/android/systemui/dagger/SystemUIModule.java +2 −0 Original line number Diff line number Diff line Loading @@ -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; Loading Loading @@ -58,6 +59,7 @@ import dagger.Provides; DemoModeModule.class, LogModule.class, PeopleHubModule.class, ScreenshotModule.class, SensorModule.class, SettingsModule.class, SettingsUtilModule.class Loading packages/SystemUI/src/com/android/systemui/screenshot/dagger/ScreenshotModule.java 0 → 100644 +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); } Loading
packages/SystemUI/src/com/android/systemui/dagger/DefaultServiceBinder.java +0 −6 Original line number Diff line number Diff line Loading @@ -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 Loading
packages/SystemUI/src/com/android/systemui/dagger/SystemUIModule.java +2 −0 Original line number Diff line number Diff line Loading @@ -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; Loading Loading @@ -58,6 +59,7 @@ import dagger.Provides; DemoModeModule.class, LogModule.class, PeopleHubModule.class, ScreenshotModule.class, SensorModule.class, SettingsModule.class, SettingsUtilModule.class Loading
packages/SystemUI/src/com/android/systemui/screenshot/dagger/ScreenshotModule.java 0 → 100644 +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); }