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

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

Issue 2865233003: Use an MutationObserver to check when a password form disappears after XHR (Closed)
Patch Set: updates Created 3 years, 7 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/password_form.cc
diff --git a/components/autofill/core/common/password_form.cc b/components/autofill/core/common/password_form.cc
index ee5f8112434b6843a83023cb458f4339335e6c3a..5adca728443a1d0c30add4e9291308366c363929 100644
--- a/components/autofill/core/common/password_form.cc
+++ b/components/autofill/core/common/password_form.cc
@@ -242,6 +242,9 @@ std::ostream& operator<<(
case PasswordForm::SubmissionIndicatorEvent::MANUAL_SAVE:
os << "MANUAL_SAVE";
break;
+ case PasswordForm::SubmissionIndicatorEvent::DOM_MUTATION_AFTER_XHR:
+ os << "DOM_MUTATION_AFTER_XHR";
+ break;
default:
os << "NO_SUBMISSION";
break;

Powered by Google App Engine
This is Rietveld 408576698