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

Unified Diff: chromeos/dbus/fake_easy_unlock_client.h

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/fake_debug_daemon_client.h ('k') | chromeos/dbus/fake_gsm_sms_client.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromeos/dbus/fake_easy_unlock_client.h
diff --git a/chromeos/dbus/fake_easy_unlock_client.h b/chromeos/dbus/fake_easy_unlock_client.h
index 046689d2029d224fd3cd0717964d02bbf67099ce..4980b7472585833636f0848640202ef05c430bf7 100644
--- a/chromeos/dbus/fake_easy_unlock_client.h
+++ b/chromeos/dbus/fake_easy_unlock_client.h
@@ -23,17 +23,17 @@ class CHROMEOS_EXPORT FakeEasyUnlockClient : public EasyUnlockClient {
virtual ~FakeEasyUnlockClient();
// EasyUnlockClient overrides
- virtual void Init(dbus::Bus* bus) OVERRIDE;
- virtual void GenerateEcP256KeyPair(const KeyPairCallback& callback) OVERRIDE;
+ virtual void Init(dbus::Bus* bus) override;
+ virtual void GenerateEcP256KeyPair(const KeyPairCallback& callback) override;
virtual void PerformECDHKeyAgreement(const std::string& private_key,
const std::string& public_key,
- const DataCallback& callback) OVERRIDE;
+ const DataCallback& callback) override;
virtual void CreateSecureMessage(const std::string& payload,
const CreateSecureMessageOptions& options,
- const DataCallback& callback) OVERRIDE;
+ const DataCallback& callback) override;
virtual void UnwrapSecureMessage(const std::string& message,
const UnwrapSecureMessageOptions& options,
- const DataCallback& callback) OVERRIDE;
+ const DataCallback& callback) override;
private:
int generated_keys_count_;
« no previous file with comments | « chromeos/dbus/fake_debug_daemon_client.h ('k') | chromeos/dbus/fake_gsm_sms_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698