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

Unified Diff: chrome/browser/chromeos/settings/token_encryptor.h

Issue 851123003: Update {virtual,override,final} to follow C++11 style in chrome/browser/chromeos/settings. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « chrome/browser/chromeos/settings/system_settings_provider.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/settings/token_encryptor.h
diff --git a/chrome/browser/chromeos/settings/token_encryptor.h b/chrome/browser/chromeos/settings/token_encryptor.h
index b9654ae25f9a1c4264edf97dd40ce48debd71e4f..057d34479b2ea04c519c8301f799ea8a842c7c56 100644
--- a/chrome/browser/chromeos/settings/token_encryptor.h
+++ b/chrome/browser/chromeos/settings/token_encryptor.h
@@ -38,11 +38,11 @@ class TokenEncryptor {
class CryptohomeTokenEncryptor : public TokenEncryptor {
public:
explicit CryptohomeTokenEncryptor(const std::string& system_salt);
- virtual ~CryptohomeTokenEncryptor();
+ ~CryptohomeTokenEncryptor() override;
// TokenEncryptor overrides:
- virtual std::string EncryptWithSystemSalt(const std::string& token) override;
- virtual std::string DecryptWithSystemSalt(
+ std::string EncryptWithSystemSalt(const std::string& token) override;
+ std::string DecryptWithSystemSalt(
const std::string& encrypted_token_hex) override;
private:
« no previous file with comments | « chrome/browser/chromeos/settings/system_settings_provider.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698