Merge "Code cleanup and inlining for ArcNotificationPresenter" into tm-qpr-dev am: a832f8b8cf

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/20071573

Change-Id: I20949a0ecb692cf4deb75a1826d14cdd548d9a27
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
TreeHugger Robot
2022-10-18 23:44:55 +00:00
committed by Automerger Merge Worker

View File

@@ -16,6 +16,8 @@
package com.android.systemui.statusbar.notification.collection.render package com.android.systemui.statusbar.notification.collection.render
import javax.inject.Inject
/** An interface by which the pipeline can make updates to the notification root view. */ /** An interface by which the pipeline can make updates to the notification root view. */
interface NotifStackController { interface NotifStackController {
/** Provides stats about the list of notifications attached to the shade */ /** Provides stats about the list of notifications attached to the shade */
@@ -42,6 +44,6 @@ data class NotifStats(
* methods, rather than forcing us to add no-op implementations in their implementation every time * methods, rather than forcing us to add no-op implementations in their implementation every time
* a method is added. * a method is added.
*/ */
open class DefaultNotifStackController : NotifStackController { open class DefaultNotifStackController @Inject constructor() : NotifStackController {
override fun setNotifStats(stats: NotifStats) {} override fun setNotifStats(stats: NotifStats) {}
} }