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

Commit 2e948995 authored by Brandon Ross Pollack's avatar Brandon Ross Pollack Committed by Android (Google) Code Review
Browse files

Merge "Code cleanup and inlining for ArcNotificationPresenter"

parents 4b9949bf c361519c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@

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. */
interface NotifStackController {
    /** 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
 * a method is added.
 */
open class DefaultNotifStackController : NotifStackController {
open class DefaultNotifStackController @Inject constructor() : NotifStackController {
    override fun setNotifStats(stats: NotifStats) {}
}
 No newline at end of file