Index: components/password_manager/core/browser/login_database_mac.cc |
diff --git a/components/password_manager/core/browser/login_database_mac.cc b/components/password_manager/core/browser/login_database_mac.cc |
index a95745742cd215b8603b332ca4b85a9fe7079a61..ad6eaa55fa3b8274dc49d17637d7beb790a89fee 100644 |
--- a/components/password_manager/core/browser/login_database_mac.cc |
+++ b/components/password_manager/core/browser/login_database_mac.cc |
@@ -10,16 +10,18 @@ |
namespace password_manager { |
+// static |
LoginDatabase::EncryptionResult LoginDatabase::EncryptedString( |
const base::string16& plain_text, |
- std::string* cipher_text) const { |
+ std::string* cipher_text) { |
*cipher_text = std::string(); |
return ENCRYPTION_RESULT_SUCCESS; |
} |
+// static |
LoginDatabase::EncryptionResult LoginDatabase::DecryptedString( |
const std::string& cipher_text, |
- base::string16* plain_text) const { |
+ base::string16* plain_text) { |
*plain_text = base::string16(); |
return ENCRYPTION_RESULT_SUCCESS; |
} |