From cf1a82953bb19bde249efc334156ba372707281c Mon Sep 17 00:00:00 2001 From: Andrei Onea Date: Thu, 28 Feb 2019 16:46:34 +0000 Subject: Add @UnsupportedAppUsage annotations For packages: com.android.internal.app com.android.internal.appwidget com.android.internal.location com.android.internal.os com.android.internal.policy com.android.internal.statusbar com.android.internal.telecom com.android.internal.telephony com.android.internal.widget This is an automatically generated CL. See go/UnsupportedAppUsage for more details. Exempted-From-Owner-Approval: Mechanical changes to the codebase which have been approved by Android API council and announced on android-eng@ Bug: 110868826 Test: m Merged-In: I6eba34467b2492047e5264684312adfa029eb317 Change-Id: I413c4b6dd12bcf40b69423718ed278cbefe82087 --- location/java/com/android/internal/location/ILocationProvider.aidl | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'location/java') diff --git a/location/java/com/android/internal/location/ILocationProvider.aidl b/location/java/com/android/internal/location/ILocationProvider.aidl index 39c2d92bf278..1820bb7d711f 100644 --- a/location/java/com/android/internal/location/ILocationProvider.aidl +++ b/location/java/com/android/internal/location/ILocationProvider.aidl @@ -31,14 +31,21 @@ import com.android.internal.location.ProviderRequest; * @hide */ interface ILocationProvider { + @UnsupportedAppUsage void enable(); + @UnsupportedAppUsage void disable(); + @UnsupportedAppUsage void setRequest(in ProviderRequest request, in WorkSource ws); // --- deprecated (but still supported) --- + @UnsupportedAppUsage ProviderProperties getProperties(); + @UnsupportedAppUsage int getStatus(out Bundle extras); + @UnsupportedAppUsage long getStatusUpdateTime(); + @UnsupportedAppUsage boolean sendExtraCommand(String command, inout Bundle extras); } -- cgit v1.2.3-59-g8ed1b