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

Unified Diff: chrome/browser/ui/crypto_module_delegate_nss.h

Issue 681823004: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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: 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);

Powered by Google App Engine
This is Rietveld 408576698