diff options
| author | 2019-03-06 09:46:00 -0800 | |
|---|---|---|
| committer | 2019-03-06 09:46:00 -0800 | |
| commit | 20ebeb61a95be25b326aa758e57a0ae39be148ee (patch) | |
| tree | 9d2c806b26c91f28a49bb2fdc50c90219e87cca2 /location/java/com | |
| parent | a25b4e8c07f22fa9eab75468120b7cb0037e51ea (diff) | |
| parent | 842e3aa420401b8ab14589611d96f5127a8dd852 (diff) | |
Merge "Add @UnsupportedAppUsage annotations"
am: 842e3aa420
Change-Id: Ie3bc96e663223de383be59cb764f139f459c5a67
Diffstat (limited to 'location/java/com')
| -rw-r--r-- | location/java/com/android/internal/location/ILocationProvider.aidl | 7 |
1 files changed, 7 insertions, 0 deletions
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); } |