diff options
| author | 2019-03-06 10:07:46 -0800 | |
|---|---|---|
| committer | 2019-03-06 10:07:46 -0800 | |
| commit | 438ec44268753230403db5178a221bb636f6980f (patch) | |
| tree | c23b23831811a63f98f5b5f4e14285fa69c12e06 /location/java/com | |
| parent | 03eb776b44b73fcf88fc8946c2b88cab055d649b (diff) | |
| parent | 20ebeb61a95be25b326aa758e57a0ae39be148ee (diff) | |
Merge "Add @UnsupportedAppUsage annotations" am: 842e3aa420
am: 20ebeb61a9
Change-Id: Ibcbbe37ffd476ea414a1041c015b8267a46a5402
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); } |