diff options
Diffstat (limited to 'chromeos/cryptohome/async_method_caller.cc')
-rw-r--r-- | chromeos/cryptohome/async_method_caller.cc | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/chromeos/cryptohome/async_method_caller.cc b/chromeos/cryptohome/async_method_caller.cc index 92392d9..c9af98a 100644 --- a/chromeos/cryptohome/async_method_caller.cc +++ b/chromeos/cryptohome/async_method_caller.cc @@ -133,11 +133,15 @@ class AsyncMethodCallerImpl : public AsyncMethodCaller { } virtual void AsyncTpmAttestationCreateCertRequest( - int options, + chromeos::attestation::AttestationCertificateProfile certificate_profile, + const std::string& username, + const std::string& request_origin, const DataCallback& callback) OVERRIDE { DBusThreadManager::Get()->GetCryptohomeClient()-> AsyncTpmAttestationCreateCertRequest( - options, + certificate_profile, + username, + request_origin, base::Bind(&AsyncMethodCallerImpl::RegisterAsyncDataCallback, weak_ptr_factory_.GetWeakPtr(), callback, |