diff options
-rw-r--r-- | src/com/android/contacts/common/list/OnPhoneNumberPickerActionListener.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/com/android/contacts/common/list/OnPhoneNumberPickerActionListener.java b/src/com/android/contacts/common/list/OnPhoneNumberPickerActionListener.java index 9c6de6bb..f69df9dd 100644 --- a/src/com/android/contacts/common/list/OnPhoneNumberPickerActionListener.java +++ b/src/com/android/contacts/common/list/OnPhoneNumberPickerActionListener.java @@ -29,9 +29,17 @@ public interface OnPhoneNumberPickerActionListener { */ void onPickPhoneNumberAction(Uri dataUri); + /** + * Calls the specified phone number audio call. + */ void onCallNumberDirectly(String phoneNumber); /** + * Calls the specified phone number, either as an audio or video call. + */ + void onCallNumberDirectly(String phoneNumber, boolean isVideoCall); + + /** * Returns the selected number as a shortcut intent. */ void onShortcutIntentCreated(Intent intent); |