Loading packages/SystemUI/AndroidManifest.xml +1 −1 Original line number Diff line number Diff line Loading @@ -772,7 +772,7 @@ </intent-filter> </receiver> <receiver android:name=".media.dialog.MediaOutDialogReceiver" <receiver android:name=".media.dialog.MediaOutputDialogReceiver" android:exported="true"> <intent-filter> <action android:name="com.android.systemui.action.LAUNCH_MEDIA_OUTPUT_DIALOG" /> Loading packages/SystemUI/src/com/android/systemui/dagger/DefaultBroadcastReceiverBinder.java +4 −4 Original line number Diff line number Diff line Loading @@ -18,7 +18,7 @@ package com.android.systemui.dagger; import android.content.BroadcastReceiver; import com.android.systemui.media.dialog.MediaOutDialogReceiver; import com.android.systemui.media.dialog.MediaOutputDialogReceiver; import com.android.systemui.screenshot.ActionProxyReceiver; import com.android.systemui.screenshot.DeleteScreenshotReceiver; import com.android.systemui.screenshot.SmartActionsReceiver; Loading Loading @@ -65,8 +65,8 @@ public abstract class DefaultBroadcastReceiverBinder { */ @Binds @IntoMap @ClassKey(MediaOutDialogReceiver.class) public abstract BroadcastReceiver bindMediaOutDialogReceiver( MediaOutDialogReceiver broadcastReceiver); @ClassKey(MediaOutputDialogReceiver.class) public abstract BroadcastReceiver bindMediaOutputDialogReceiver( MediaOutputDialogReceiver broadcastReceiver); } packages/SystemUI/src/com/android/systemui/media/dialog/MediaOutDialogReceiver.kt→packages/SystemUI/src/com/android/systemui/media/dialog/MediaOutputDialogReceiver.kt +2 −2 Original line number Diff line number Diff line Loading @@ -26,8 +26,8 @@ import javax.inject.Inject /** * BroadcastReceiver for handling media output intent */ class MediaOutDialogReceiver @Inject constructor( private var mediaOutputDialogFactory: MediaOutputDialogFactory class MediaOutputDialogReceiver @Inject constructor( private val mediaOutputDialogFactory: MediaOutputDialogFactory ) : BroadcastReceiver() { override fun onReceive(context: Context, intent: Intent) { if (TextUtils.equals(MediaOutputSliceConstants.ACTION_LAUNCH_MEDIA_OUTPUT_DIALOG, Loading Loading
packages/SystemUI/AndroidManifest.xml +1 −1 Original line number Diff line number Diff line Loading @@ -772,7 +772,7 @@ </intent-filter> </receiver> <receiver android:name=".media.dialog.MediaOutDialogReceiver" <receiver android:name=".media.dialog.MediaOutputDialogReceiver" android:exported="true"> <intent-filter> <action android:name="com.android.systemui.action.LAUNCH_MEDIA_OUTPUT_DIALOG" /> Loading
packages/SystemUI/src/com/android/systemui/dagger/DefaultBroadcastReceiverBinder.java +4 −4 Original line number Diff line number Diff line Loading @@ -18,7 +18,7 @@ package com.android.systemui.dagger; import android.content.BroadcastReceiver; import com.android.systemui.media.dialog.MediaOutDialogReceiver; import com.android.systemui.media.dialog.MediaOutputDialogReceiver; import com.android.systemui.screenshot.ActionProxyReceiver; import com.android.systemui.screenshot.DeleteScreenshotReceiver; import com.android.systemui.screenshot.SmartActionsReceiver; Loading Loading @@ -65,8 +65,8 @@ public abstract class DefaultBroadcastReceiverBinder { */ @Binds @IntoMap @ClassKey(MediaOutDialogReceiver.class) public abstract BroadcastReceiver bindMediaOutDialogReceiver( MediaOutDialogReceiver broadcastReceiver); @ClassKey(MediaOutputDialogReceiver.class) public abstract BroadcastReceiver bindMediaOutputDialogReceiver( MediaOutputDialogReceiver broadcastReceiver); }
packages/SystemUI/src/com/android/systemui/media/dialog/MediaOutDialogReceiver.kt→packages/SystemUI/src/com/android/systemui/media/dialog/MediaOutputDialogReceiver.kt +2 −2 Original line number Diff line number Diff line Loading @@ -26,8 +26,8 @@ import javax.inject.Inject /** * BroadcastReceiver for handling media output intent */ class MediaOutDialogReceiver @Inject constructor( private var mediaOutputDialogFactory: MediaOutputDialogFactory class MediaOutputDialogReceiver @Inject constructor( private val mediaOutputDialogFactory: MediaOutputDialogFactory ) : BroadcastReceiver() { override fun onReceive(context: Context, intent: Intent) { if (TextUtils.equals(MediaOutputSliceConstants.ACTION_LAUNCH_MEDIA_OUTPUT_DIALOG, Loading