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

Side by Side Diff: components/autofill/content/common/autofill_messages.h

Issue 228263004: Password manager internals page: Introduce logger in renderer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Squash in little fixes Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Multiply-included message file, hence no include guard. 5 // Multiply-included message file, hence no include guard.
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/time/time.h" 9 #include "base/time/time.h"
10 #include "components/autofill/content/common/autofill_param_traits_macros.h" 10 #include "components/autofill/content/common/autofill_param_traits_macros.h"
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 178
179 // Notification that initial layout has occurred and the following password 179 // Notification that initial layout has occurred and the following password
180 // forms are visible on the page (e.g. not set to display:none.) 180 // forms are visible on the page (e.g. not set to display:none.)
181 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered, 181 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered,
182 std::vector<autofill::PasswordForm> /* forms */) 182 std::vector<autofill::PasswordForm> /* forms */)
183 183
184 // Notification that this password form was submitted by the user. 184 // Notification that this password form was submitted by the user.
185 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormSubmitted, 185 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormSubmitted,
186 autofill::PasswordForm /* form */) 186 autofill::PasswordForm /* form */)
187 187
188 // Notification that logs during saving the password have been gathered.
189 IPC_MESSAGE_ROUTED1(AutofillHostMsg_SavePasswordProgressLogs,
Ilya Sherman 2014/04/09 21:10:08 nit: I'd name this message something like "LogSave
vabr (Chromium) 2014/04/10 08:51:25 Done.
190 std::string /* log */)
191
188 // Notification that a form has been submitted. The user hit the button. 192 // Notification that a form has been submitted. The user hit the button.
189 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormSubmitted, 193 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormSubmitted,
190 autofill::FormData /* form */, 194 autofill::FormData /* form */,
191 base::TimeTicks /* timestamp */) 195 base::TimeTicks /* timestamp */)
192 196
193 // Notification that a form field's value has changed. 197 // Notification that a form field's value has changed.
194 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange, 198 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange,
195 autofill::FormData /* the form */, 199 autofill::FormData /* the form */,
196 autofill::FormFieldData /* the form field */, 200 autofill::FormFieldData /* the form field */,
197 base::TimeTicks /* timestamp */) 201 base::TimeTicks /* timestamp */)
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
254 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, 258 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions,
255 autofill::FormFieldData /* the form field */, 259 autofill::FormFieldData /* the form field */,
256 gfx::RectF /* input field bounds, window-relative */, 260 gfx::RectF /* input field bounds, window-relative */,
257 std::vector<base::string16> /* suggestions */, 261 std::vector<base::string16> /* suggestions */,
258 std::vector<base::string16> /* realms */) 262 std::vector<base::string16> /* realms */)
259 263
260 // Inform browser of data list values for the curent field. 264 // Inform browser of data list values for the curent field.
261 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, 265 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
262 std::vector<base::string16> /* values */, 266 std::vector<base::string16> /* values */,
263 std::vector<base::string16> /* labels */) 267 std::vector<base::string16> /* labels */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698