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

Unified Diff: chrome/renderer/password_autocomplete_manager.cc

Issue 5197005: Change the login name auto completion logic to case sensitive.... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 10 years, 1 month 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
Index: chrome/renderer/password_autocomplete_manager.cc
===================================================================
--- chrome/renderer/password_autocomplete_manager.cc (revision 66919)
+++ chrome/renderer/password_autocomplete_manager.cc (working copy)
@@ -161,7 +161,7 @@
bool exact_match) {
if (exact_match)
return username1 == username2;
- return StartsWith(username1, username2, false);
+ return StartsWith(username1, username2, true);
}
} // namespace

Powered by Google App Engine
This is Rietveld 408576698