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

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

Issue 19705013: [password autofill] Remove references to PasswordForm from RenderViewImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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/core/common/autocheckout_status.h" 10 #include "components/autofill/core/common/autocheckout_status.h"
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 // Notification that password forms have been seen that are candidates for 202 // Notification that password forms have been seen that are candidates for
203 // filling/submitting by the password manager. 203 // filling/submitting by the password manager.
204 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed, 204 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed,
205 std::vector<content::PasswordForm> /* forms */) 205 std::vector<content::PasswordForm> /* forms */)
206 206
207 // Notification that initial layout has occurred and the following password 207 // Notification that initial layout has occurred and the following password
208 // forms are visible on the page (e.g. not set to display:none.) 208 // forms are visible on the page (e.g. not set to display:none.)
209 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered, 209 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered,
210 std::vector<content::PasswordForm> /* forms */) 210 std::vector<content::PasswordForm> /* forms */)
211 211
212 // Notification that this password form was submitted by the user.
213 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormSubmitted,
214 content::PasswordForm /* form */)
215
212 // Notification that a form has been submitted. The user hit the button. 216 // Notification that a form has been submitted. The user hit the button.
213 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormSubmitted, 217 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormSubmitted,
214 autofill::FormData /* form */, 218 autofill::FormData /* form */,
215 base::TimeTicks /* timestamp */) 219 base::TimeTicks /* timestamp */)
216 220
217 // Notification that a form field's value has changed. 221 // Notification that a form field's value has changed.
218 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange, 222 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange,
219 autofill::FormData /* the form */, 223 autofill::FormData /* the form */,
220 autofill::FormFieldData /* the form field */, 224 autofill::FormFieldData /* the form field */,
221 base::TimeTicks /* timestamp */) 225 base::TimeTicks /* timestamp */)
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions, 289 IPC_MESSAGE_ROUTED4(AutofillHostMsg_ShowPasswordSuggestions,
286 autofill::FormFieldData /* the form field */, 290 autofill::FormFieldData /* the form field */,
287 gfx::RectF /* input field bounds, window-relative */, 291 gfx::RectF /* input field bounds, window-relative */,
288 std::vector<base::string16> /* suggestions */, 292 std::vector<base::string16> /* suggestions */,
289 std::vector<base::string16> /* realms */) 293 std::vector<base::string16> /* realms */)
290 294
291 // Inform browser of data list values for the curent field. 295 // Inform browser of data list values for the curent field.
292 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, 296 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
293 std::vector<base::string16> /* values */, 297 std::vector<base::string16> /* values */,
294 std::vector<base::string16> /* labels */) 298 std::vector<base::string16> /* labels */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698