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

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

Issue 8413022: wstring cleanup in browser/ui/login (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: better Created 9 years, 2 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 | chrome/browser/ui/login/login_model.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/password_manager/password_manager.cc
diff --git a/chrome/browser/password_manager/password_manager.cc b/chrome/browser/password_manager/password_manager.cc
index 1f4bf4d4fedb7473d3cc766556818c1c3a3ad05e..c81aab2f7605082461178a3706e5b84425ce7142 100644
--- a/chrome/browser/password_manager/password_manager.cc
+++ b/chrome/browser/password_manager/password_manager.cc
@@ -236,9 +236,8 @@ void PasswordManager::Autofill(
}
default:
if (observer_) {
- observer_->OnAutofillDataAvailable(
- UTF16ToWideHack(preferred_match->username_value),
- UTF16ToWideHack(preferred_match->password_value));
+ observer_->OnAutofillDataAvailable(preferred_match->username_value,
+ preferred_match->password_value);
}
}
}
« no previous file with comments | « no previous file | chrome/browser/ui/login/login_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698