diff options
Diffstat (limited to 'identity/aidl/default/common/PresentationSession.h')
-rw-r--r-- | identity/aidl/default/common/PresentationSession.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/identity/aidl/default/common/PresentationSession.h b/identity/aidl/default/common/PresentationSession.h index 4cb174a82c..76ca67b675 100644 --- a/identity/aidl/default/common/PresentationSession.h +++ b/identity/aidl/default/common/PresentationSession.h @@ -38,11 +38,8 @@ using ::std::vector; class PresentationSession : public BnPresentationSession { public: PresentationSession(sp<SecureHardwareProxyFactory> hwProxyFactory, - sp<SecureHardwareSessionProxy> hwProxy, - HardwareInformation hardwareInformation) - : hwProxyFactory_(std::move(hwProxyFactory)), - hwProxy_(std::move(hwProxy)), - hardwareInformation_(std::move(hardwareInformation)) {} + sp<SecureHardwareSessionProxy> hwProxy) + : hwProxyFactory_(std::move(hwProxyFactory)), hwProxy_(std::move(hwProxy)) {} virtual ~PresentationSession(); @@ -68,7 +65,6 @@ class PresentationSession : public BnPresentationSession { // Set by constructor sp<SecureHardwareProxyFactory> hwProxyFactory_; sp<SecureHardwareSessionProxy> hwProxy_; - HardwareInformation hardwareInformation_; // Set by initialize() uint64_t id_; |