Chromium Code Reviews| 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 |