diff --git a/packages/SystemUI/src/com/android/systemui/tv/TvSystemUIBinder.java b/packages/SystemUI/src/com/android/systemui/tv/TvSystemUIBinder.java index e59d2f233804d..d0fb91c9342a1 100644 --- a/packages/SystemUI/src/com/android/systemui/tv/TvSystemUIBinder.java +++ b/packages/SystemUI/src/com/android/systemui/tv/TvSystemUIBinder.java @@ -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); }