Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: chromeos/dbus/mock_cryptohome_client.h

Issue 14305009: Enhanced and refactored the AttestationFlow interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromeos/dbus/mock_cryptohome_client.h
diff --git a/chromeos/dbus/mock_cryptohome_client.h b/chromeos/dbus/mock_cryptohome_client.h
index 2563aac43629a004dcd5a5b816959de12737db8b..b3e9b06c8b6a8e107ca8c754036fc51e4339f168 100644
--- a/chromeos/dbus/mock_cryptohome_client.h
+++ b/chromeos/dbus/mock_cryptohome_client.h
@@ -88,44 +88,44 @@ class MockCryptohomeClient : public CryptohomeClient {
const AsyncMethodCallback& callback));
MOCK_METHOD4(AsyncTpmAttestationFinishCertRequest,
void(const std::string& pca_response,
- AttestationKeyType key_type,
+ attestation::AttestationKeyType key_type,
const std::string& key_name,
const AsyncMethodCallback& callback));
MOCK_METHOD3(TpmAttestationDoesKeyExist,
- void(AttestationKeyType key_type,
+ void(attestation::AttestationKeyType key_type,
const std::string& key_name,
const BoolDBusMethodCallback& callback));
MOCK_METHOD3(TpmAttestationGetCertificate,
- void(AttestationKeyType key_type,
+ void(attestation::AttestationKeyType key_type,
const std::string& key_name,
const DataMethodCallback& callback));
MOCK_METHOD3(TpmAttestationGetPublicKey,
- void(AttestationKeyType key_type,
+ void(attestation::AttestationKeyType key_type,
const std::string& key_name,
const DataMethodCallback& callback));
MOCK_METHOD3(TpmAttestationRegisterKey,
- void(AttestationKeyType key_type,
+ void(attestation::AttestationKeyType key_type,
const std::string& key_name,
const AsyncMethodCallback& callback));
MOCK_METHOD7(TpmAttestationSignEnterpriseChallenge,
- void(AttestationKeyType key_type,
+ void(attestation::AttestationKeyType key_type,
const std::string& key_name,
const std::string& domain,
const std::string& device_id,
- AttestationChallengeOptions options,
+ attestation::AttestationChallengeOptions options,
const std::string& challenge,
const AsyncMethodCallback& callback));
MOCK_METHOD4(TpmAttestationSignSimpleChallenge,
- void(AttestationKeyType key_type,
+ void(attestation::AttestationKeyType key_type,
const std::string& key_name,
const std::string& challenge,
const AsyncMethodCallback& callback));
MOCK_METHOD3(TpmAttestationGetKeyPayload,
- void(AttestationKeyType key_type,
+ void(attestation::AttestationKeyType key_type,
const std::string& key_name,
const DataMethodCallback& callback));
MOCK_METHOD4(TpmAttestationSetKeyPayload,
- void(AttestationKeyType key_type,
+ void(attestation::AttestationKeyType key_type,
const std::string& key_name,
const std::string& payload,
const BoolDBusMethodCallback& callback));
« chromeos/attestation/attestation_flow_unittest.cc ('K') | « chromeos/dbus/cryptohome_client.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698