diff options
author | Zhao Fan <zhaof@codeaurora.org> | 2020-12-09 11:34:51 +0000 |
---|---|---|
committer | Zhao Fan <zhaof@codeaurora.org> | 2020-12-09 11:34:51 +0000 |
commit | 7545d0a754764775dfbee3beabe1117b5a27dc88 (patch) | |
tree | e34e91439a61e9a90968771f2bb2d2eb31ff7785 /telecomm/java/android/telecom/Connection.java | |
parent | 6fd2029083f802fad11a5d22f3a56eeac143a2b9 (diff) | |
parent | c5c90016df6f712f82b3a8709c783cc9ad16d0dd (diff) |
[automerger] IMS: Add property PROPERTY_IS_PARTICIPANT_HOST am: c5c90016df
Change-Id: I698d15151febdf6d431f4c8c69c60bc810b4b240
Diffstat (limited to 'telecomm/java/android/telecom/Connection.java')
-rw-r--r-- | telecomm/java/android/telecom/Connection.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/telecomm/java/android/telecom/Connection.java b/telecomm/java/android/telecom/Connection.java index 271fec8571d6..f08cdf6b4c52 100644 --- a/telecomm/java/android/telecom/Connection.java +++ b/telecomm/java/android/telecom/Connection.java @@ -533,9 +533,18 @@ public abstract class Connection extends Conferenceable { */ public static final int PROPERTY_IS_ADHOC_CONFERENCE = 1 << 12; + /** + * Set by the framework to indicate that a Connection is participant host, which + * means the conference participant's handle is the same as the conference host's handle. + * <p> + * This property is specific to IMS conference calls originating in Telephony. + * @hide + */ + public static final int PROPERTY_IS_PARTICIPANT_HOST = 1 << 13; + //********************************************************************************************** - // Next PROPERTY value: 1<<13 + // Next PROPERTY value: 1<<14 //********************************************************************************************** /** |