Loading src/com/android/server/telecom/CallsManager.java +2 −0 Original line number Diff line number Diff line Loading @@ -3019,6 +3019,7 @@ public class CallsManager extends Call.ListenerBase */ boolean holdActiveCallForNewCall(Call call) { Call activeCall = (Call) mConnectionSvrFocusMgr.getCurrentFocusCall(); Log.i(this, "holdActiveCallForNewCall, newCall: %s, activeCall: %s", call, activeCall); if (activeCall != null && activeCall != call) { if (canHold(activeCall)) { activeCall.hold(); Loading Loading @@ -3074,6 +3075,7 @@ public class CallsManager extends Call.ListenerBase @VisibleForTesting public void markCallAsActive(Call call) { Log.i(this, "markCallAsActive, isSelfManaged: " + call.isSelfManaged()); if (call.isSelfManaged()) { // backward compatibility, the self-managed connection service will set the call state // to active directly. We should hold or disconnect the current active call based on the Loading src/com/android/server/telecom/ConnectionServiceFocusManager.java +1 −1 Original line number Diff line number Diff line Loading @@ -391,7 +391,7 @@ public class ConnectionServiceFocusManager { } private void handleRequestFocus(FocusRequest focusRequest) { Log.d(this, "handleRequestFocus req = %s", focusRequest); Log.i(this, "handleRequestFocus req = %s", focusRequest); if (mCurrentFocus == null || mCurrentFocus.equals(focusRequest.call.getConnectionServiceWrapper())) { updateConnectionServiceFocus(focusRequest.call.getConnectionServiceWrapper()); Loading Loading
src/com/android/server/telecom/CallsManager.java +2 −0 Original line number Diff line number Diff line Loading @@ -3019,6 +3019,7 @@ public class CallsManager extends Call.ListenerBase */ boolean holdActiveCallForNewCall(Call call) { Call activeCall = (Call) mConnectionSvrFocusMgr.getCurrentFocusCall(); Log.i(this, "holdActiveCallForNewCall, newCall: %s, activeCall: %s", call, activeCall); if (activeCall != null && activeCall != call) { if (canHold(activeCall)) { activeCall.hold(); Loading Loading @@ -3074,6 +3075,7 @@ public class CallsManager extends Call.ListenerBase @VisibleForTesting public void markCallAsActive(Call call) { Log.i(this, "markCallAsActive, isSelfManaged: " + call.isSelfManaged()); if (call.isSelfManaged()) { // backward compatibility, the self-managed connection service will set the call state // to active directly. We should hold or disconnect the current active call based on the Loading
src/com/android/server/telecom/ConnectionServiceFocusManager.java +1 −1 Original line number Diff line number Diff line Loading @@ -391,7 +391,7 @@ public class ConnectionServiceFocusManager { } private void handleRequestFocus(FocusRequest focusRequest) { Log.d(this, "handleRequestFocus req = %s", focusRequest); Log.i(this, "handleRequestFocus req = %s", focusRequest); if (mCurrentFocus == null || mCurrentFocus.equals(focusRequest.call.getConnectionServiceWrapper())) { updateConnectionServiceFocus(focusRequest.call.getConnectionServiceWrapper()); Loading