Rename PROPERTY_WORK_CALL to PROPERTY_ENTERPRISE_CALL based on API review am: 53b5df43b4
am: 2a63190228
* commit '2a6319022861f8c2fce74b5657d78c008b33115a':
Rename PROPERTY_WORK_CALL to PROPERTY_ENTERPRISE_CALL based on API review
Change-Id: Ifdd53fc5fc836fc07239e5ad2f7ba00b5c8b976a
This commit is contained in:
@@ -36117,11 +36117,12 @@ package android.telecom {
|
||||
field public static final int CAPABILITY_SWAP_CONFERENCE = 8; // 0x8
|
||||
field public static final int PROPERTY_CONFERENCE = 1; // 0x1
|
||||
field public static final int PROPERTY_EMERGENCY_CALLBACK_MODE = 4; // 0x4
|
||||
field public static final int PROPERTY_ENTERPRISE_CALL = 32; // 0x20
|
||||
field public static final int PROPERTY_GENERIC_CONFERENCE = 2; // 0x2
|
||||
field public static final int PROPERTY_HIGH_DEF_AUDIO = 16; // 0x10
|
||||
field public static final int PROPERTY_IS_EXTERNAL_CALL = 64; // 0x40
|
||||
field public static final int PROPERTY_WIFI = 8; // 0x8
|
||||
field public static final int PROPERTY_WORK_CALL = 32; // 0x20
|
||||
field public static final deprecated int PROPERTY_WORK_CALL = 32; // 0x20
|
||||
}
|
||||
|
||||
public final class CallAudioState implements android.os.Parcelable {
|
||||
|
||||
@@ -38953,11 +38953,12 @@ package android.telecom {
|
||||
field public static final int CAPABILITY_SWAP_CONFERENCE = 8; // 0x8
|
||||
field public static final int PROPERTY_CONFERENCE = 1; // 0x1
|
||||
field public static final int PROPERTY_EMERGENCY_CALLBACK_MODE = 4; // 0x4
|
||||
field public static final int PROPERTY_ENTERPRISE_CALL = 32; // 0x20
|
||||
field public static final int PROPERTY_GENERIC_CONFERENCE = 2; // 0x2
|
||||
field public static final int PROPERTY_HIGH_DEF_AUDIO = 16; // 0x10
|
||||
field public static final int PROPERTY_IS_EXTERNAL_CALL = 64; // 0x40
|
||||
field public static final int PROPERTY_WIFI = 8; // 0x8
|
||||
field public static final int PROPERTY_WORK_CALL = 32; // 0x20
|
||||
field public static final deprecated int PROPERTY_WORK_CALL = 32; // 0x20
|
||||
}
|
||||
|
||||
public static abstract deprecated class Call.Listener extends android.telecom.Call.Callback {
|
||||
|
||||
@@ -36195,11 +36195,12 @@ package android.telecom {
|
||||
field public static final int CAPABILITY_SWAP_CONFERENCE = 8; // 0x8
|
||||
field public static final int PROPERTY_CONFERENCE = 1; // 0x1
|
||||
field public static final int PROPERTY_EMERGENCY_CALLBACK_MODE = 4; // 0x4
|
||||
field public static final int PROPERTY_ENTERPRISE_CALL = 32; // 0x20
|
||||
field public static final int PROPERTY_GENERIC_CONFERENCE = 2; // 0x2
|
||||
field public static final int PROPERTY_HIGH_DEF_AUDIO = 16; // 0x10
|
||||
field public static final int PROPERTY_IS_EXTERNAL_CALL = 64; // 0x40
|
||||
field public static final int PROPERTY_WIFI = 8; // 0x8
|
||||
field public static final int PROPERTY_WORK_CALL = 32; // 0x20
|
||||
field public static final deprecated int PROPERTY_WORK_CALL = 32; // 0x20
|
||||
}
|
||||
|
||||
public final class CallAudioState implements android.os.Parcelable {
|
||||
|
||||
@@ -515,7 +515,7 @@ Android N.</p>
|
||||
|
||||
<p>
|
||||
The dialer should check for the new flag
|
||||
<code>android.telecom.Call.PROPERTY_WORK_CALL</code> to determine if a call
|
||||
<code>android.telecom.Call.PROPERTY_ENTERPRISE_CALL</code> to determine if a call
|
||||
is a work call. If a call is a work call, the dialer should indicate this,
|
||||
such as by adding a work badge.
|
||||
</p>
|
||||
|
||||
@@ -286,10 +286,15 @@ public final class Call {
|
||||
public static final int PROPERTY_HIGH_DEF_AUDIO = 0x00000010;
|
||||
|
||||
/**
|
||||
* Whether the call is associated with the work profile.
|
||||
* @deprecated Use {@link #PROPERTY_ENTERPRISE_CALL} instead.
|
||||
*/
|
||||
public static final int PROPERTY_WORK_CALL = 0x00000020;
|
||||
|
||||
/**
|
||||
* Whether the call is associated with the work profile.
|
||||
*/
|
||||
public static final int PROPERTY_ENTERPRISE_CALL = 0x00000020;
|
||||
|
||||
/**
|
||||
* When set, indicates that this {@code Call} does not actually exist locally for the
|
||||
* {@link ConnectionService}.
|
||||
|
||||
Reference in New Issue
Block a user