Index: chrome/browser/ui/crypto_module_delegate_nss.h |
diff --git a/chrome/browser/ui/crypto_module_delegate_nss.h b/chrome/browser/ui/crypto_module_delegate_nss.h |
index 7afde30beb605137c8d0bb1a95bbf3ed4ecbe6fd..60c7cb54e57876a085adb7b013e26f8244587afd 100644 |
--- a/chrome/browser/ui/crypto_module_delegate_nss.h |
+++ b/chrome/browser/ui/crypto_module_delegate_nss.h |
@@ -30,7 +30,7 @@ class ChromeNSSCryptoModuleDelegate |
const net::HostPortPair& server, |
crypto::ScopedPK11Slot slot); |
- virtual ~ChromeNSSCryptoModuleDelegate(); |
+ ~ChromeNSSCryptoModuleDelegate() override; |
// Must be called on IO thread. Creates a delegate and returns it |
// synchronously or asynchronously to |callback|. If the delegate could not be |
@@ -43,12 +43,12 @@ class ChromeNSSCryptoModuleDelegate |
callback); |
// crypto::NSSCryptoModuleDelegate implementation. |
- virtual crypto::ScopedPK11Slot RequestSlot() override; |
+ crypto::ScopedPK11Slot RequestSlot() override; |
// crypto::CryptoModuleBlockingPasswordDelegate implementation. |
- virtual std::string RequestPassword(const std::string& slot_name, |
- bool retry, |
- bool* cancelled) override; |
+ std::string RequestPassword(const std::string& slot_name, |
+ bool retry, |
+ bool* cancelled) override; |
private: |
void ShowDialog(const std::string& slot_name, bool retry); |