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

Unified Diff: components/autofill/core/common/save_password_progress_logger.cc

Issue 718043007: PasswordManager should not check the landing page for login form repetition for non-HTML forms (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build Created 6 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: components/autofill/core/common/save_password_progress_logger.cc
diff --git a/components/autofill/core/common/save_password_progress_logger.cc b/components/autofill/core/common/save_password_progress_logger.cc
index 30c23d98661cb20840200189dd6c67c511fccf40..7c7be9773e290535ea53cec88918c5b22f430a14 100644
--- a/components/autofill/core/common/save_password_progress_logger.cc
+++ b/components/autofill/core/common/save_password_progress_logger.cc
@@ -176,6 +176,9 @@ std::string GetStringFromID(SavePasswordProgressLogger::StringID id) {
return "ChromePasswordManagerClient::WasLastNavigationHTTPError";
case SavePasswordProgressLogger::STRING_HTTP_STATUS_CODE:
return "HTTP status code for landing page";
+ case
+ SavePasswordProgressLogger::STRING_PROVISIONALLY_SAVED_FORM_IS_NOT_HTML:
+ return "Provisionally saved form is not HTML";
case SavePasswordProgressLogger::STRING_INVALID:
return "INVALID";
// Intentionally no default: clause here -- all IDs need to get covered.

Powered by Google App Engine
This is Rietveld 408576698