Merge "Add onBindClient for testing" am: 53252b14e5
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1625243 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ib2f48ba063315842a07972dac2cfce9b01befad4
This commit is contained in:
@@ -1604,6 +1604,10 @@ package android.telecom {
|
|||||||
method @NonNull public android.telecom.ConnectionRequest.Builder setVideoState(int);
|
method @NonNull public android.telecom.ConnectionRequest.Builder setVideoState(int);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public abstract class ConnectionService extends android.app.Service {
|
||||||
|
method public void onBindClient(@Nullable android.content.Intent);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
package android.telephony {
|
package android.telephony {
|
||||||
|
|||||||
@@ -20,6 +20,7 @@ import android.annotation.NonNull;
|
|||||||
import android.annotation.Nullable;
|
import android.annotation.Nullable;
|
||||||
import android.annotation.SdkConstant;
|
import android.annotation.SdkConstant;
|
||||||
import android.annotation.SystemApi;
|
import android.annotation.SystemApi;
|
||||||
|
import android.annotation.TestApi;
|
||||||
import android.app.Service;
|
import android.app.Service;
|
||||||
import android.content.ComponentName;
|
import android.content.ComponentName;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
@@ -1887,6 +1888,7 @@ public abstract class ConnectionService extends Service {
|
|||||||
/** {@inheritDoc} */
|
/** {@inheritDoc} */
|
||||||
@Override
|
@Override
|
||||||
public final IBinder onBind(Intent intent) {
|
public final IBinder onBind(Intent intent) {
|
||||||
|
onBindClient(intent);
|
||||||
return mBinder;
|
return mBinder;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1897,6 +1899,13 @@ public abstract class ConnectionService extends Service {
|
|||||||
return super.onUnbind(intent);
|
return super.onUnbind(intent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Used for testing to let the test suite know when the connection service has been bound.
|
||||||
|
* @hide
|
||||||
|
*/
|
||||||
|
@TestApi
|
||||||
|
public void onBindClient(@Nullable Intent intent) {
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This can be used by telecom to either create a new outgoing conference call or attach
|
* This can be used by telecom to either create a new outgoing conference call or attach
|
||||||
|
|||||||
Reference in New Issue
Block a user