diff options
-rw-r--r-- | chrome/browser/password_manager/encryptor_linux.cc | 6 | ||||
-rw-r--r-- | chrome/browser/webdata/web_database.cc | 3 |
2 files changed, 4 insertions, 5 deletions
diff --git a/chrome/browser/password_manager/encryptor_linux.cc b/chrome/browser/password_manager/encryptor_linux.cc index 9c40c37..cc0fa23 100644 --- a/chrome/browser/password_manager/encryptor_linux.cc +++ b/chrome/browser/password_manager/encryptor_linux.cc @@ -25,8 +25,7 @@ bool Encryptor::DecryptString16(const std::string& ciphertext, bool Encryptor::EncryptString(const std::string& plaintext, std::string* ciphertext) { // This doesn't actually encrypt, we need to work on the Encryptor API. - // http://code.google.com/p/chromium/issues/detail?id=8205 - NOTIMPLEMENTED(); + // http://code.google.com/p/chromium/issues/detail?id=25404 // this does a copy ciphertext->assign(plaintext.data(), plaintext.length()); @@ -36,8 +35,7 @@ bool Encryptor::EncryptString(const std::string& plaintext, bool Encryptor::DecryptString(const std::string& ciphertext, std::string* plaintext) { // This doesn't actually decrypt, we need to work on the Encryptor API. - // http://code.google.com/p/chromium/issues/detail?id=8205 - NOTIMPLEMENTED(); + // http://code.google.com/p/chromium/issues/detail?id=25404 plaintext->assign(ciphertext.data(), ciphertext.length()); return true; diff --git a/chrome/browser/webdata/web_database.cc b/chrome/browser/webdata/web_database.cc index 4d61431..b20ca2c 100644 --- a/chrome/browser/webdata/web_database.cc +++ b/chrome/browser/webdata/web_database.cc @@ -19,7 +19,8 @@ // bottleneck to use the platform methods (e.g. Keychain on the Mac, Gnome // Keyring / KWallet on Linux). That's going to take a massive change in its // API... see: -// http://code.google.com/p/chromium/issues/detail?id=8205 (Linux) +// http://code.google.com/p/chromium/issues/detail?id=25404 (Linux) +// but the (possibly-now-unused) Mac encryptor stub code needs to die too. #include "chrome/browser/password_manager/encryptor.h" using webkit_glue::FormField; |