Index: chrome/browser/extensions/api/networking_private/crypto_verify_impl.h |
diff --git a/chrome/browser/extensions/api/networking_private/crypto_verify_impl.h b/chrome/browser/extensions/api/networking_private/crypto_verify_impl.h |
index 1f3d8d66614ee5538e094a6d7258ef7246433a47..3e687e64f56ea8ef4e0d1c5850e423bc6f27c177 100644 |
--- a/chrome/browser/extensions/api/networking_private/crypto_verify_impl.h |
+++ b/chrome/browser/extensions/api/networking_private/crypto_verify_impl.h |
@@ -15,20 +15,20 @@ class CryptoVerifyImpl |
: public extensions::NetworkingPrivateServiceClient::CryptoVerify { |
public: |
CryptoVerifyImpl(); |
- virtual ~CryptoVerifyImpl(); |
+ ~CryptoVerifyImpl() override; |
// NetworkingPrivateServiceClient::CryptoVerify |
- virtual void VerifyDestination(const Credentials& credentials, |
- bool* verified, |
- std::string* error) override; |
- virtual void VerifyAndEncryptCredentials( |
+ void VerifyDestination(const Credentials& credentials, |
+ bool* verified, |
+ std::string* error) override; |
+ void VerifyAndEncryptCredentials( |
const std::string& network_guid, |
const Credentials& credentials, |
const VerifyAndEncryptCredentialsCallback& callback) override; |
- virtual void VerifyAndEncryptData(const Credentials& credentials, |
- const std::string& data, |
- std::string* base64_encoded_ciphertext, |
- std::string* error) override; |
+ void VerifyAndEncryptData(const Credentials& credentials, |
+ const std::string& data, |
+ std::string* base64_encoded_ciphertext, |
+ std::string* error) override; |
private: |
DISALLOW_COPY_AND_ASSIGN(CryptoVerifyImpl); |