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

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

Issue 624153002: replace OVERRIDE and FINAL with override and 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_chromeos.cc
diff --git a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc
index 89199246eac9ef9b2f5d0551e5e5e237c5936039..fa805e4ed0f44815db55d3a4ef34ce5c3cd6cbb4 100644
--- a/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc
+++ b/chrome/browser/extensions/api/easy_unlock_private/easy_unlock_private_crypto_delegate_chromeos.cc
@@ -48,13 +48,13 @@ class EasyUnlockPrivateCryptoDelegateChromeOS
virtual ~EasyUnlockPrivateCryptoDelegateChromeOS() {}
- virtual void GenerateEcP256KeyPair(const KeyPairCallback& callback) OVERRIDE {
+ virtual void GenerateEcP256KeyPair(const KeyPairCallback& callback) override {
dbus_client_->GenerateEcP256KeyPair(callback);
}
virtual void PerformECDHKeyAgreement(
const easy_unlock_private::PerformECDHKeyAgreement::Params& params,
- const DataCallback& callback) OVERRIDE {
+ const DataCallback& callback) override {
dbus_client_->PerformECDHKeyAgreement(
params.private_key,
params.public_key,
@@ -63,7 +63,7 @@ class EasyUnlockPrivateCryptoDelegateChromeOS
virtual void CreateSecureMessage(
const easy_unlock_private::CreateSecureMessage::Params& params,
- const DataCallback& callback) OVERRIDE {
+ const DataCallback& callback) override {
chromeos::EasyUnlockClient::CreateSecureMessageOptions options;
options.key = params.key;
if (params.options.associated_data)
@@ -84,7 +84,7 @@ class EasyUnlockPrivateCryptoDelegateChromeOS
virtual void UnwrapSecureMessage(
const easy_unlock_private::UnwrapSecureMessage::Params& params,
- const DataCallback& callback) OVERRIDE {
+ const DataCallback& callback) override {
chromeos::EasyUnlockClient::UnwrapSecureMessageOptions options;
options.key = params.key;
if (params.options.associated_data)

Powered by Google App Engine
This is Rietveld 408576698