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

Unified Diff: components/gcm_driver/system_encryptor.h

Issue 666133002: Standardize usage of virtual/override/final in components/ (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: components/gcm_driver/system_encryptor.h
diff --git a/components/gcm_driver/system_encryptor.h b/components/gcm_driver/system_encryptor.h
index 48c75c84964d0cb9145cda6233d70afbe87ec233..02339ad55595992d338891587099a54690c39823 100644
--- a/components/gcm_driver/system_encryptor.h
+++ b/components/gcm_driver/system_encryptor.h
@@ -13,13 +13,13 @@ namespace gcm {
// Encryptor that uses the Chrome password manager's encryptor.
class SystemEncryptor : public Encryptor {
public:
- virtual ~SystemEncryptor();
+ ~SystemEncryptor() override;
- virtual bool EncryptString(const std::string& plaintext,
- std::string* ciphertext) override;
+ bool EncryptString(const std::string& plaintext,
+ std::string* ciphertext) override;
- virtual bool DecryptString(const std::string& ciphertext,
- std::string* plaintext) override;
+ bool DecryptString(const std::string& ciphertext,
+ std::string* plaintext) override;
};
} // namespace gcm
« no previous file with comments | « components/gcm_driver/gcm_stats_recorder_impl.h ('k') | components/google/core/browser/google_url_tracker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698