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

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

Issue 336763002: Password internals page: notify renderer about logging state on client construction (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add a ping message renderer->browser for logging activity update Created 6 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/content/common/autofill_messages.h
diff --git a/components/autofill/content/common/autofill_messages.h b/components/autofill/content/common/autofill_messages.h
index f9a99fe670dea7fccaf93328f7517227906990e1..5f6bbb133b45fed7d4bb5607c398799b67af952b 100644
--- a/components/autofill/content/common/autofill_messages.h
+++ b/components/autofill/content/common/autofill_messages.h
@@ -199,6 +199,11 @@ IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed,
IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered,
std::vector<autofill::PasswordForm> /* forms */)
+// A ping to the browser to send AutofillMsg_ChangeLoggingState with the current
Ilya Sherman 2014/06/14 00:50:39 nit: Perhaps we should update the IPC message to b
vabr (Chromium) 2014/06/20 10:47:04 Done.
+// state of the logging activity. This is called when the PasswordAutofillAgent
+// is constructed.
+IPC_MESSAGE_ROUTED0(AutofillHostMsg_UpdateLoggingState);
engedy 2014/06/16 09:13:38 I think this name is somewhat misleading: it sugge
vabr (Chromium) 2014/06/20 10:47:04 Done.
+
// Notification that this password form was submitted by the user.
IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormSubmitted,
autofill::PasswordForm /* form */)

Powered by Google App Engine
This is Rietveld 408576698