Merge "Make APIs to get system phone accounts public" into lmp-mr1-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
7d901cb6f5
@@ -28410,8 +28410,10 @@ package android.telecom {
|
|||||||
method public void clearAccounts();
|
method public void clearAccounts();
|
||||||
method public android.net.Uri getAdnUriForPhoneAccount(android.telecom.PhoneAccountHandle);
|
method public android.net.Uri getAdnUriForPhoneAccount(android.telecom.PhoneAccountHandle);
|
||||||
method public android.telecom.PhoneAccountHandle getConnectionManager();
|
method public android.telecom.PhoneAccountHandle getConnectionManager();
|
||||||
|
method public android.telecom.PhoneAccountHandle getDefaultOutgoingPhoneAccount(java.lang.String);
|
||||||
method public android.telecom.PhoneAccount getPhoneAccount(android.telecom.PhoneAccountHandle);
|
method public android.telecom.PhoneAccount getPhoneAccount(android.telecom.PhoneAccountHandle);
|
||||||
method public java.util.List<android.telecom.PhoneAccountHandle> getPhoneAccountsForPackage();
|
method public java.util.List<android.telecom.PhoneAccountHandle> getPhoneAccountsForPackage();
|
||||||
|
method public java.util.List<android.telecom.PhoneAccountHandle> getPhoneAccountsSupportingScheme(java.lang.String);
|
||||||
method public boolean handleMmi(java.lang.String);
|
method public boolean handleMmi(java.lang.String);
|
||||||
method public boolean handleMmi(android.telecom.PhoneAccountHandle, java.lang.String);
|
method public boolean handleMmi(android.telecom.PhoneAccountHandle, java.lang.String);
|
||||||
method public boolean hasMultipleCallCapableAccounts();
|
method public boolean hasMultipleCallCapableAccounts();
|
||||||
|
|||||||
@@ -338,8 +338,6 @@ public class TelecomManager {
|
|||||||
* @param uriScheme The URI scheme.
|
* @param uriScheme The URI scheme.
|
||||||
* @return The {@link PhoneAccountHandle} corresponding to the user-chosen default for outgoing
|
* @return The {@link PhoneAccountHandle} corresponding to the user-chosen default for outgoing
|
||||||
* phone calls for a specified URI scheme.
|
* phone calls for a specified URI scheme.
|
||||||
*
|
|
||||||
* @hide
|
|
||||||
*/
|
*/
|
||||||
public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) {
|
public PhoneAccountHandle getDefaultOutgoingPhoneAccount(String uriScheme) {
|
||||||
try {
|
try {
|
||||||
@@ -459,8 +457,6 @@ public class TelecomManager {
|
|||||||
*
|
*
|
||||||
* @param uriScheme The URI scheme.
|
* @param uriScheme The URI scheme.
|
||||||
* @return A list of {@code PhoneAccountHandle} objects supporting the URI scheme.
|
* @return A list of {@code PhoneAccountHandle} objects supporting the URI scheme.
|
||||||
*
|
|
||||||
* @hide
|
|
||||||
*/
|
*/
|
||||||
public List<PhoneAccountHandle> getPhoneAccountsSupportingScheme(String uriScheme) {
|
public List<PhoneAccountHandle> getPhoneAccountsSupportingScheme(String uriScheme) {
|
||||||
try {
|
try {
|
||||||
|
|||||||
Reference in New Issue
Block a user