Update to new extra data API

Use the new API which gets back an arbitrary Bundle (passed with the
incoming call intent).

Change-Id: I52e7e1d0788ecd01aa427e76de7ccf4d9b75f1f0
diff --git a/src/com/android/services/telephony/BaseTelephonyCallService.java b/src/com/android/services/telephony/BaseTelephonyCallService.java
index e0240d0..104bcde 100644
--- a/src/com/android/services/telephony/BaseTelephonyCallService.java
+++ b/src/com/android/services/telephony/BaseTelephonyCallService.java
@@ -17,6 +17,7 @@
 package com.android.services.telephony;
 
 import android.net.Uri;
+import android.os.Bundle;
 import android.os.RemoteException;
 import android.telecomm.CallInfo;
 import android.telecomm.CallService;
@@ -58,7 +59,7 @@
 
     /** {@inheritDoc} */
     @Override
-    public void setIncomingCallId(String callId) {
+    public void setIncomingCallId(String callId, Bundle extras) {
         // Incoming calls not implemented yet.
     }