Skip to content
Snippets Groups Projects
Commit dc577846 authored by Hakjun Choi's avatar Hakjun Choi Committed by Android (Google) Code Review
Browse files

Merge "Remove requestIsSatelliteCommunicationAllowedForCurrentLocation from...

Merge "Remove requestIsSatelliteCommunicationAllowedForCurrentLocation from vendor implementation" into 24D1-dev
parents 9860e4e2 83e21581
No related branches found
No related tags found
No related merge requests found
......@@ -346,28 +346,6 @@ oneway interface ISatellite {
void requestSatelliteModemState(in IIntegerConsumer resultCallback,
in IIntegerConsumer callback);
/**
* Request to get whether satellite communication is allowed for the current location.
*
* @param resultCallback The callback to receive the error code result of the operation.
* This must only be sent when the result is not
* SatelliteResult#SATELLITE_RESULT_SUCCESS.
* @param callback If the result is SatelliteResult#SATELLITE_RESULT_SUCCESS, the callback to
* receive whether satellite communication is allowed for the current location.
*
* Valid result codes returned:
* SatelliteResult:SATELLITE_RESULT_SUCCESS
* SatelliteResult:SATELLITE_RESULT_SERVICE_ERROR
* SatelliteResult:SATELLITE_RESULT_MODEM_ERROR
* SatelliteResult:SATELLITE_RESULT_INVALID_MODEM_STATE
* SatelliteResult:SATELLITE_RESULT_INVALID_ARGUMENTS
* SatelliteResult:SATELLITE_RESULT_RADIO_NOT_AVAILABLE
* SatelliteResult:SATELLITE_RESULT_REQUEST_NOT_SUPPORTED
* SatelliteResult:SATELLITE_RESULT_NO_RESOURCES
*/
void requestIsSatelliteCommunicationAllowedForCurrentLocation(
in IIntegerConsumer resultCallback, in IBooleanConsumer callback);
/**
* Request to get the time after which the satellite will be visible. This is an int
* representing the duration in seconds after which the satellite will be visible.
......
......@@ -193,17 +193,6 @@ public class SatelliteImplBase extends SatelliteService {
"requestSatelliteModemState");
}
@Override
public void requestIsSatelliteCommunicationAllowedForCurrentLocation(
IIntegerConsumer resultCallback, IBooleanConsumer callback)
throws RemoteException {
executeMethodAsync(
() -> SatelliteImplBase.this
.requestIsSatelliteCommunicationAllowedForCurrentLocation(
resultCallback, callback),
"requestIsCommunicationAllowedForCurrentLocation");
}
@Override
public void requestTimeForNextSatelliteVisibility(IIntegerConsumer resultCallback,
IIntegerConsumer callback) throws RemoteException {
......@@ -637,30 +626,6 @@ public class SatelliteImplBase extends SatelliteService {
// stub implementation
}
/**
* Request to get whether satellite communication is allowed for the current location.
*
* @param resultCallback The callback to receive the error code result of the operation.
* This must only be sent when the result is not
* SatelliteResult#SATELLITE_RESULT_SUCCESS.
* @param callback If the result is SatelliteResult#SATELLITE_RESULT_SUCCESS, the callback to
* receive whether satellite communication is allowed for the current location.
*
* Valid result codes returned:
* SatelliteResult:SATELLITE_RESULT_SUCCESS
* SatelliteResult:SATELLITE_RESULT_SERVICE_ERROR
* SatelliteResult:SATELLITE_RESULT_MODEM_ERROR
* SatelliteResult:SATELLITE_RESULT_INVALID_MODEM_STATE
* SatelliteResult:SATELLITE_RESULT_INVALID_ARGUMENTS
* SatelliteResult:SATELLITE_RESULT_RADIO_NOT_AVAILABLE
* SatelliteResult:SATELLITE_RESULT_REQUEST_NOT_SUPPORTED
* SatelliteResult:SATELLITE_RESULT_NO_RESOURCES
*/
public void requestIsSatelliteCommunicationAllowedForCurrentLocation(
@NonNull IIntegerConsumer resultCallback, @NonNull IBooleanConsumer callback) {
// stub implementation
}
/**
* Request to get the time after which the satellite will be visible. This is an int
* representing the duration in seconds after which the satellite will be visible.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment