Removing logs from old bug
Bug: 134106231 Test: None, only log removal Change-Id: I6503f38ac25d1b2784a181182de026ec0f96e125
This commit is contained in:
@@ -1930,12 +1930,6 @@ public class KeyguardViewMediator extends SystemUI {
|
||||
+ " --> flags=0x" + Integer.toHexString(flags));
|
||||
}
|
||||
|
||||
// TODO(b/113914868): investigation log for disappearing home button
|
||||
Log.d(TAG, "adjustStatusBarLocked (b/113914868): flags=" + flags
|
||||
+ "mShowing=" + mShowing + " mStatusBarManager=" + mStatusBarManager
|
||||
+ " mOccluded=" + mOccluded + " isSecure=" + isSecure()
|
||||
+ " force=" + forceHideHomeRecentsButtons);
|
||||
|
||||
mStatusBarManager.disable(flags);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -285,8 +285,6 @@ public class KeyguardBouncer {
|
||||
}
|
||||
|
||||
public void hide(boolean destroyView) {
|
||||
// TODO(b/113914868): investigation log for disappearing home button
|
||||
Log.i(TAG, "KeyguardBouncer.hide (b/113914868): destroyView=" + destroyView);
|
||||
if (isShowing()) {
|
||||
StatsLog.write(StatsLog.KEYGUARD_BOUNCER_STATE_CHANGED,
|
||||
StatsLog.KEYGUARD_BOUNCER_STATE_CHANGED__STATE__HIDDEN);
|
||||
|
||||
@@ -597,10 +597,6 @@ public class NavigationBarView extends FrameLayout implements
|
||||
boolean disableHome = isGesturalMode(mNavBarMode)
|
||||
|| ((mDisabledFlags & View.STATUS_BAR_DISABLE_HOME) != 0);
|
||||
|
||||
// TODO(b/113914868): investigation log for disappearing home button
|
||||
Log.i(TAG, "updateNavButtonIcons (b/113914868): home disabled=" + disableHome
|
||||
+ " mDisabledFlags=" + mDisabledFlags);
|
||||
|
||||
// Always disable recents when alternate car mode UI is active and for secondary displays.
|
||||
boolean disableRecent = isRecentsButtonDisabled();
|
||||
|
||||
|
||||
@@ -719,21 +719,6 @@ public class StatusBarManagerService extends IStatusBarService.Stub implements D
|
||||
// Ensure state for the current user is applied, even if passed a non-current user.
|
||||
final int net1 = gatherDisableActionsLocked(mCurrentUserId, 1);
|
||||
final int net2 = gatherDisableActionsLocked(mCurrentUserId, 2);
|
||||
|
||||
// TODO(b/113914868): investigation log for disappearing home button
|
||||
if (whichFlag == 1 && pkg != null && pkg.contains("systemui")) {
|
||||
String disabledData = "{ ";
|
||||
for (int i = 0; i < mDisableRecords.size(); i++) {
|
||||
DisableRecord tok = mDisableRecords.get(i);
|
||||
disabledData += " ([" + i + "] " + tok + "), ";
|
||||
}
|
||||
disabledData += " }";
|
||||
final UiState state = getUiState(displayId);
|
||||
|
||||
Log.d(TAG, "disabledlocked (b/113914868): displayId=" + displayId + ", net1=" + net1
|
||||
+ ", mDisabled1=" + state.mDisabled1 + ", token=" + token
|
||||
+ ", mDisableRecords=" + mDisableRecords.size() + " => " + disabledData);
|
||||
}
|
||||
final UiState state = getUiState(displayId);
|
||||
if (!state.disableEquals(net1, net2)) {
|
||||
state.setDisabled(net1, net2);
|
||||
|
||||
Reference in New Issue
Block a user