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

Unified Diff: components/autofill/content/common/autofill_messages.h

Issue 293093002: Don't show "Save password" prompt for a failed login (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 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/content/common/autofill_messages.h
diff --git a/components/autofill/content/common/autofill_messages.h b/components/autofill/content/common/autofill_messages.h
index cb9fc6a1252f615b3c57377c77dbfdbc73807f28..f0643e0a26536e1d1bc1cf1d82ae0b25f8228043 100644
--- a/components/autofill/content/common/autofill_messages.h
+++ b/components/autofill/content/common/autofill_messages.h
@@ -190,9 +190,11 @@ IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed,
std::vector<autofill::PasswordForm> /* forms */)
// Notification that initial layout has occurred and the following password
-// forms are visible on the page (e.g. not set to display:none.)
-IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered,
- std::vector<autofill::PasswordForm> /* forms */)
+// forms are visible on the page (e.g. not set to display:none.), and if
vabr (Chromium) 2014/05/23 12:18:36 nit: if -> whether
+// all frames in the page have been rendered.
+IPC_MESSAGE_ROUTED2(AutofillHostMsg_PasswordFormsRendered,
+ std::vector<autofill::PasswordForm> /* forms */,
+ bool /* true if all frames have been rendered */)
// Notification that this password form was submitted by the user.
IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormSubmitted,

Powered by Google App Engine
This is Rietveld 408576698