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

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

Issue 13264002: Requery the autofill server when forms and input fields are dynamically added. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 9 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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.h" 9 #include "base/time.h"
10 #include "components/autofill/common/autocheckout_status.h" 10 #include "components/autofill/common/autocheckout_status.h"
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 // Sent when the current page is whitelisted for Autocheckout. 168 // Sent when the current page is whitelisted for Autocheckout.
169 IPC_MESSAGE_ROUTED0(AutofillMsg_WhitelistedForAutocheckout) 169 IPC_MESSAGE_ROUTED0(AutofillMsg_WhitelistedForAutocheckout)
170 170
171 // Autofill messages sent from the renderer to the browser. 171 // Autofill messages sent from the renderer to the browser.
172 172
173 // TODO(creis): check in the browser that the renderer actually has permission 173 // TODO(creis): check in the browser that the renderer actually has permission
174 // for the URL to avoid compromised renderers talking to the browser. 174 // for the URL to avoid compromised renderers talking to the browser.
175 175
176 // Notification that forms have been seen that are candidates for 176 // Notification that forms have been seen that are candidates for
177 // filling/submitting by the AutofillManager. 177 // filling/submitting by the AutofillManager.
178 IPC_MESSAGE_ROUTED3(AutofillHostMsg_FormsSeen, 178 IPC_MESSAGE_ROUTED4(AutofillHostMsg_FormsSeen,
179 std::vector<FormData> /* forms */, 179 std::vector<FormData> /* forms */,
180 base::TimeTicks /* timestamp */, 180 base::TimeTicks /* timestamp */,
181 bool /* has_more_forms */) 181 bool /* has_more_forms */,
182 bool /* is_post_document_load */)
182 183
183 // Notification that password forms have been seen that are candidates for 184 // Notification that password forms have been seen that are candidates for
184 // filling/submitting by the password manager. 185 // filling/submitting by the password manager.
185 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed, 186 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsParsed,
186 std::vector<content::PasswordForm> /* forms */) 187 std::vector<content::PasswordForm> /* forms */)
187 188
188 // Notification that initial layout has occurred and the following password 189 // Notification that initial layout has occurred and the following password
189 // forms are visible on the page (e.g. not set to display:none.) 190 // forms are visible on the page (e.g. not set to display:none.)
190 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered, 191 IPC_MESSAGE_ROUTED1(AutofillHostMsg_PasswordFormsRendered,
191 std::vector<content::PasswordForm> /* forms */) 192 std::vector<content::PasswordForm> /* forms */)
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 FormFieldData /* the form field */, 280 FormFieldData /* the form field */,
280 gfx::RectF /* input field bounds, window-relative */, 281 gfx::RectF /* input field bounds, window-relative */,
281 std::vector<string16> /* suggestions */) 282 std::vector<string16> /* suggestions */)
282 283
283 // Inform browser of data list values for the curent field. 284 // Inform browser of data list values for the curent field.
284 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, 285 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList,
285 std::vector<string16> /* values */, 286 std::vector<string16> /* values */,
286 std::vector<string16> /* labels */, 287 std::vector<string16> /* labels */,
287 std::vector<string16> /* icons */, 288 std::vector<string16> /* icons */,
288 std::vector<int> /* unique ids */) 289 std::vector<int> /* unique ids */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698