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

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

Issue 2035143002: Basic implementation of showing password fill dialog on page load (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Fix iOS compile Created 4 years, 6 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
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 ddc55f42893ba718cda0ed9f5cd4e347f347ce6a..1c13e464e665358e98f1e2eeebc24d05a1d43a4e 100644
--- a/components/autofill/core/common/save_password_progress_logger.cc
+++ b/components/autofill/core/common/save_password_progress_logger.cc
@@ -305,6 +305,9 @@ std::string SavePasswordProgressLogger::GetStringFromID(
return "PasswordManager::Autofill";
case SavePasswordProgressLogger::STRING_PASSWORDMANAGER_AUTOFILLHTTPAUTH:
return "PasswordManager::AutofillHttpAuth";
+ case SavePasswordProgressLogger::
+ STRING_PASSWORDMANAGER_SHOW_INITIAL_PASSWORD_ACCOUNT_SUGGESTIONS:
+ return "PasswordManager::ShowInitialPasswordAccountSuggestions";
case SavePasswordProgressLogger::STRING_WAIT_FOR_USERNAME:
return "wait_for_username";
case SavePasswordProgressLogger::STRING_LOGINMODELOBSERVER_PRESENT:
@@ -359,6 +362,9 @@ std::string SavePasswordProgressLogger::GetStringFromID(
"visible";
case SavePasswordProgressLogger::STRING_ON_FILL_PASSWORD_FORM_METHOD:
return "PasswordAutofillAgent::OnFillPasswordForm";
+ case SavePasswordProgressLogger::
+ STRING_ON_SHOW_INITIAL_PASSWORD_ACCOUNT_SUGGESTIONS:
+ return "AutofillAgent::OnShowInitialPasswordAccountSuggestions";
case SavePasswordProgressLogger::STRING_AMBIGUOUS_OR_EMPTY_NAMES:
return "ambiguous_or_empty_names";
case SavePasswordProgressLogger::STRING_NUMBER_OF_POTENTIAL_FORMS_TO_FILL:

Powered by Google App Engine
This is Rietveld 408576698