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

Unified Diff: chromeos/cryptohome/cryptohome_library.cc

Issue 14890005: Enable Clang warnings in .cc files for Linux+[Aura/ChromeOS] (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 7 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: chromeos/cryptohome/cryptohome_library.cc
diff --git a/chromeos/cryptohome/cryptohome_library.cc b/chromeos/cryptohome/cryptohome_library.cc
index 9529836538636edd821bd8661f91fcf76777e717..f717e1eeb4068ca7218eef2ef4c8653b067ade11 100644
--- a/chromeos/cryptohome/cryptohome_library.cc
+++ b/chromeos/cryptohome/cryptohome_library.cc
@@ -290,12 +290,12 @@ class CryptohomeLibraryStubImpl : public CryptohomeLibrary {
return kStubSystemSalt;
}
- virtual std::string EncryptWithSystemSalt(const std::string& token) {
+ virtual std::string EncryptWithSystemSalt(const std::string& token) OVERRIDE {
return token;
}
virtual std::string DecryptWithSystemSalt(
- const std::string& encrypted_token_hex) {
+ const std::string& encrypted_token_hex) OVERRIDE {
return encrypted_token_hex;
}

Powered by Google App Engine
This is Rietveld 408576698