diff options
Diffstat (limited to 'components/ownership/mock_owner_key_util.h')
-rw-r--r-- | components/ownership/mock_owner_key_util.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/ownership/mock_owner_key_util.h b/components/ownership/mock_owner_key_util.h index 821f075..79e071b 100644 --- a/components/ownership/mock_owner_key_util.h +++ b/components/ownership/mock_owner_key_util.h @@ -23,13 +23,13 @@ class OWNERSHIP_EXPORT MockOwnerKeyUtil : public OwnerKeyUtil { MockOwnerKeyUtil(); // OwnerKeyUtil implementation: - virtual bool ImportPublicKey(std::vector<uint8>* output) OVERRIDE; + virtual bool ImportPublicKey(std::vector<uint8>* output) override; #if defined(USE_NSS) virtual crypto::RSAPrivateKey* FindPrivateKeyInSlot( const std::vector<uint8>& key, - PK11SlotInfo* slot) OVERRIDE; + PK11SlotInfo* slot) override; #endif // defined(USE_NSS) - virtual bool IsPublicKeyPresent() OVERRIDE; + virtual bool IsPublicKeyPresent() override; // Clears the public and private keys. void Clear(); |