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

Commit beb70e18 authored by Dave Mankoff's avatar Dave Mankoff
Browse files

Ensure VpnStatusObserver is injectable for TV

Fixes: 216577782
Test: manual
Change-Id: I4a463b5eccd8bcca0be9a61d421b511cd86c75d7
parent 1ce97f91
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ package com.android.systemui.tv;

import com.android.systemui.CoreStartable;
import com.android.systemui.dagger.GlobalRootComponent;
import com.android.systemui.statusbar.tv.VpnStatusObserver;
import com.android.systemui.statusbar.tv.notifications.TvNotificationHandler;

import dagger.Binds;
@@ -34,4 +35,9 @@ interface TvSystemUIBinder {
    @IntoMap
    @ClassKey(TvNotificationHandler.class)
    CoreStartable bindTvNotificationHandler(TvNotificationHandler systemui);

    @Binds
    @IntoMap
    @ClassKey(VpnStatusObserver.class)
    CoreStartable bindVpnStatusObserver(VpnStatusObserver systemui);
}