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

Unified Diff: chromeos/dbus/easy_unlock_client.cc

Issue 628883002: replace OVERRIDE and FINAL with override and final in chromeos/ (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
« no previous file with comments | « chromeos/dbus/debug_daemon_client.cc ('k') | chromeos/dbus/fake_bluetooth_adapter_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/easy_unlock_client.cc
diff --git a/chromeos/dbus/easy_unlock_client.cc b/chromeos/dbus/easy_unlock_client.cc
index 8d171a810173fb293c30e2a1b8a3c477c948633c..d75a40fde2a24c4e5301d850ac9db93eba21d600 100644
--- a/chromeos/dbus/easy_unlock_client.cc
+++ b/chromeos/dbus/easy_unlock_client.cc
@@ -46,7 +46,7 @@ class EasyUnlockClientImpl : public EasyUnlockClient {
// EasyUnlockClient override.
virtual void PerformECDHKeyAgreement(const std::string& private_key,
const std::string& public_key,
- const DataCallback& callback) OVERRIDE {
+ const DataCallback& callback) override {
dbus::MethodCall method_call(
easy_unlock::kEasyUnlockServiceInterface,
easy_unlock::kPerformECDHKeyAgreementMethod);
@@ -62,7 +62,7 @@ class EasyUnlockClientImpl : public EasyUnlockClient {
}
// EasyUnlockClient override.
- virtual void GenerateEcP256KeyPair(const KeyPairCallback& callback) OVERRIDE {
+ virtual void GenerateEcP256KeyPair(const KeyPairCallback& callback) override {
dbus::MethodCall method_call(
easy_unlock::kEasyUnlockServiceInterface,
easy_unlock::kGenerateEcP256KeyPairMethod);
@@ -75,7 +75,7 @@ class EasyUnlockClientImpl : public EasyUnlockClient {
// EasyUnlockClient override.
virtual void CreateSecureMessage(const std::string& payload,
const CreateSecureMessageOptions& options,
- const DataCallback& callback) OVERRIDE {
+ const DataCallback& callback) override {
dbus::MethodCall method_call(
easy_unlock::kEasyUnlockServiceInterface,
easy_unlock::kCreateSecureMessageMethod);
@@ -99,7 +99,7 @@ class EasyUnlockClientImpl : public EasyUnlockClient {
// EasyUnlockClient override.
virtual void UnwrapSecureMessage(const std::string& message,
const UnwrapSecureMessageOptions& options,
- const DataCallback& callback) OVERRIDE {
+ const DataCallback& callback) override {
dbus::MethodCall method_call(
easy_unlock::kEasyUnlockServiceInterface,
easy_unlock::kUnwrapSecureMessageMethod);
@@ -118,7 +118,7 @@ class EasyUnlockClientImpl : public EasyUnlockClient {
}
protected:
- virtual void Init(dbus::Bus* bus) OVERRIDE {
+ virtual void Init(dbus::Bus* bus) override {
proxy_ =
bus->GetObjectProxy(
easy_unlock::kEasyUnlockServiceName,
« no previous file with comments | « chromeos/dbus/debug_daemon_client.cc ('k') | chromeos/dbus/fake_bluetooth_adapter_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698