Merge changes from topic "aidl-java-api-ci" into tm-dev am: b8b05de22f

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/17575228

Change-Id: I79782bbe5788f487725d323a08f973f15a56effd
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Steven Moreland
2022-04-12 17:24:56 +00:00
committed by Automerger Merge Worker
4 changed files with 37 additions and 0 deletions

View File

@@ -118,6 +118,16 @@ public final class SEService {
});
}
}
@Override
public String getInterfaceHash() {
return ISecureElementListener.HASH;
}
@Override
public int getInterfaceVersion() {
return ISecureElementListener.VERSION;
}
}
private SEListener mSEListener = new SEListener();

View File

@@ -115,5 +115,13 @@ public class HealthRegCallbackAidl {
public void healthInfoChanged(HealthInfo healthInfo) throws RemoteException {
mServiceInfoCallback.update(healthInfo);
}
@Override
public String getInterfaceHash() {
return IHealthInfoCallback.HASH;
}
@Override
public int getInterfaceVersion() {
return IHealthInfoCallback.VERSION;
}
}
}

View File

@@ -389,6 +389,15 @@ public abstract class IContextHubWrapper {
mCallback.handleTransactionResult(transactionId, success);
});
}
@Override
public String getInterfaceHash() {
return android.hardware.contexthub.IContextHubCallback.HASH;
}
@Override
public int getInterfaceVersion() {
return android.hardware.contexthub.IContextHubCallback.VERSION;
}
}
ContextHubWrapperAidl(android.hardware.contexthub.IContextHub hub) {

View File

@@ -725,5 +725,15 @@ public final class UsbPortAidl implements UsbPortHal {
e);
}
}
@Override
public String getInterfaceHash() {
return IUsbCallback.HASH;
}
@Override
public int getInterfaceVersion() {
return IUsbCallback.VERSION;
}
}
}