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

Unified Diff: chrome/browser/password_manager/encryptor_mac.mm

Issue 1613024: Removed NOTIMPLEMENTED() from Encryptor::EncryptString() and Encryptor::Decry... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/encryptor_mac.mm
===================================================================
--- chrome/browser/password_manager/encryptor_mac.mm (revision 44834)
+++ chrome/browser/password_manager/encryptor_mac.mm (working copy)
@@ -25,7 +25,7 @@
bool Encryptor::EncryptString(const std::string& plaintext,
std::string* ciphertext) {
// This doesn't actually encrypt, we need to work on the Encryptor API.
- NOTIMPLEMENTED();
+ // http://code.google.com/p/chromium/issues/detail?id=25404
// this does a copy
ciphertext->assign(plaintext.data(), plaintext.length());
@@ -35,7 +35,7 @@
bool Encryptor::DecryptString(const std::string& ciphertext,
std::string* plaintext) {
// This doesn't actually decrypt, we need to work on the Encryptor API.
- 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 | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698