Telephony: Compilation fix for missing bool in sendBroadcastToReceiver

- Refer commit 715a9998ea29c674d73fbda82aafd817fa6fa1b3

Change-Id: I8beeda91681bdd7d8b1a33077f8d819d028cbb84
diff --git a/src/com/android/server/telecom/CallActivity.java b/src/com/android/server/telecom/CallActivity.java
index a674743..63b801b 100644
--- a/src/com/android/server/telecom/CallActivity.java
+++ b/src/com/android/server/telecom/CallActivity.java
@@ -227,8 +227,8 @@
     /**
      * Trampolines the intent to the broadcast receiver that runs only as the primary user.
      */
-    private boolean sendBroadcastToReceiver(Intent intent) {
-        intent.putExtra(CallReceiver.KEY_IS_INCOMING_CALL, false);
+    private boolean sendBroadcastToReceiver(Intent intent, boolean incoming) {
+        intent.putExtra(CallReceiver.KEY_IS_INCOMING_CALL, incoming);
         intent.setFlags(Intent.FLAG_RECEIVER_FOREGROUND);
         intent.setClass(this, CallReceiver.class);
         Log.d(this, "Sending broadcast as user to CallReceiver");