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

Unified Diff: chrome/browser/password_manager/encryptor_linux.cc

Issue 483003: linux: remove a NOTIMPL since we have a bug on it (Closed)
Patch Set: Created 11 years 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 | « no previous file | chrome/browser/webdata/web_database.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/encryptor_linux.cc
diff --git a/chrome/browser/password_manager/encryptor_linux.cc b/chrome/browser/password_manager/encryptor_linux.cc
index 9c40c37d1a816c8ae6dcca99be853756a54ac0e9..cc0fa23e16528b8d852d4dd3283f0fac07bc40c8 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;
« no previous file with comments | « no previous file | chrome/browser/webdata/web_database.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698