Rename PROPERTY_WORK_CALL to PROPERTY_ENTERPRISE_CALL based on API review am: 53b5df43b4 am: 2a63190228
am: 880f65e852
* commit '880f65e852fc3288b49d8dae7dd530db0c9eb6b9':
Rename PROPERTY_WORK_CALL to PROPERTY_ENTERPRISE_CALL based on API review
Change-Id: I2beba5344b448b2461a2348c50cc490aa67947e0
This commit is contained in:
@@ -36124,11 +36124,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 {
|
||||
|
||||
@@ -38960,11 +38960,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 {
|
||||
|
||||
@@ -36202,11 +36202,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