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

Unified Diff: chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_stub.cc

Issue 666153002: Standardize usage of virtual/override/final in chrome/browser/extensions/ (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/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_stub.cc
diff --git a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_stub.cc b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_stub.cc
index 126a5d98568eeac6b32121d6b8f3eac7b7a0aefe..5869930bbc02243ddc01cbad3d670219413a304a 100644
--- a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_stub.cc
+++ b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_stub.cc
@@ -15,25 +15,25 @@ class EasyUnlockPrivateCryptoDelegateStub
public:
EasyUnlockPrivateCryptoDelegateStub() {}
- virtual ~EasyUnlockPrivateCryptoDelegateStub() {}
+ ~EasyUnlockPrivateCryptoDelegateStub() override {}
- virtual void GenerateEcP256KeyPair(const KeyPairCallback& callback) override {
+ void GenerateEcP256KeyPair(const KeyPairCallback& callback) override {
callback.Run("", "");
}
- virtual void PerformECDHKeyAgreement(
+ void PerformECDHKeyAgreement(
const easy_unlock_private::PerformECDHKeyAgreement::Params& params,
const DataCallback& callback) override {
callback.Run("");
}
- virtual void CreateSecureMessage(
+ void CreateSecureMessage(
const easy_unlock_private::CreateSecureMessage::Params& params,
const DataCallback& callback) override {
callback.Run("");
}
- virtual void UnwrapSecureMessage(
+ void UnwrapSecureMessage(
const easy_unlock_private::UnwrapSecureMessage::Params& params,
const DataCallback& callback) override {
callback.Run("");

Powered by Google App Engine
This is Rietveld 408576698