Extend timeout for reusing a call disconnected via NOCIB

Changing from 400ms to 100000ms. GV may take an arbitrary amount of time
to respond, and there is no harm in reusing the call since there is a
check to make sure the handles are the same.

Bug: 20820155
Bug: 30627464
Change-Id: I518b529d28cb3edf40a72ddb38530d92ec5e973f
diff --git a/src/com/android/server/telecom/Timeouts.java b/src/com/android/server/telecom/Timeouts.java
index 08d7410..7026084 100644
--- a/src/com/android/server/telecom/Timeouts.java
+++ b/src/com/android/server/telecom/Timeouts.java
@@ -68,7 +68,7 @@
      * in-call UI.
      */
     public static long getNewOutgoingCallCancelMillis(ContentResolver contentResolver) {
-        return get(contentResolver, "new_outgoing_call_cancel_ms", 400L);
+        return get(contentResolver, "new_outgoing_call_cancel_ms", 100000L);
     }
 
     /**