Log an error if overview proxy service isn't available.

Shouldn't be happening.

Bug: 134981174
Test: None
Change-Id: Ibfcc6e713e4efaad32c84a81f6a35f31e49fcd3a
This commit is contained in:
Matt Casey
2019-06-24 11:25:19 -04:00
parent f80234a9b0
commit 955725fc93

View File

@@ -746,6 +746,8 @@ public class OverviewProxyService implements CallbackController<OverviewProxyLis
try {
if (mOverviewProxy != null) {
mOverviewProxy.onAssistantVisibilityChanged(visibility);
} else {
Log.e(TAG_OPS, "Failed to get overview proxy for assistant visibility.");
}
} catch (RemoteException e) {
Log.e(TAG_OPS, "Failed to call onAssistantVisibilityChanged()", e);