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

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

Issue 1494373003: [Autofill] Send Autofill upload when active form loses focus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed test Created 5 years 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 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 #include <vector> 8 #include <vector>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 autofill::FormData /* the form */, 275 autofill::FormData /* the form */,
276 autofill::FormFieldData /* the form field */, 276 autofill::FormFieldData /* the form field */,
277 gfx::RectF /* input field bounds, window-relative */) 277 gfx::RectF /* input field bounds, window-relative */)
278 278
279 // Sent when a form is previewed with Autofill suggestions. 279 // Sent when a form is previewed with Autofill suggestions.
280 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidPreviewAutofillFormData) 280 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidPreviewAutofillFormData)
281 281
282 // Sent immediately after the renderer receives a ping IPC. 282 // Sent immediately after the renderer receives a ping IPC.
283 IPC_MESSAGE_ROUTED0(AutofillHostMsg_PingAck) 283 IPC_MESSAGE_ROUTED0(AutofillHostMsg_PingAck)
284 284
285 // Sent when the current form is no longer focused.
286 IPC_MESSAGE_ROUTED0(AutofillHostMsg_FocusNoLongerOnForm)
287
285 // Sent when a form is filled with Autofill suggestions. 288 // Sent when a form is filled with Autofill suggestions.
286 IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidFillAutofillFormData, 289 IPC_MESSAGE_ROUTED2(AutofillHostMsg_DidFillAutofillFormData,
290 autofill::FormData /* the form */,
287 base::TimeTicks /* timestamp */) 291 base::TimeTicks /* timestamp */)
288 292
289 // Sent when a form receives a request to do interactive autocomplete. 293 // Sent when a form receives a request to do interactive autocomplete.
290 IPC_MESSAGE_ROUTED1(AutofillHostMsg_RequestAutocomplete, 294 IPC_MESSAGE_ROUTED1(AutofillHostMsg_RequestAutocomplete,
291 autofill::FormData /* form_data */) 295 autofill::FormData /* form_data */)
292 296
293 // Send when a text field is done editing. 297 // Send when a text field is done editing.
294 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing) 298 IPC_MESSAGE_ROUTED0(AutofillHostMsg_DidEndTextFieldEditing)
295 299
296 // Instructs the browser to hide the Autofill popup if it is open. 300 // Instructs the browser to hide the Autofill popup if it is open.
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 // Inform browser of data list values for the curent field. 341 // Inform browser of data list values for the curent field.
338 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList, 342 IPC_MESSAGE_ROUTED2(AutofillHostMsg_SetDataList,
339 std::vector<base::string16> /* values */, 343 std::vector<base::string16> /* values */,
340 std::vector<base::string16> /* labels */) 344 std::vector<base::string16> /* labels */)
341 345
342 // Inform the browser which password form is currently focused, as a response 346 // Inform the browser which password form is currently focused, as a response
343 // to the |AutofillMsg_FindFocusedPasswordForm| request. If no password form 347 // to the |AutofillMsg_FindFocusedPasswordForm| request. If no password form
344 // is focused, the response will contain an empty |autofill::PasswordForm|. 348 // is focused, the response will contain an empty |autofill::PasswordForm|.
345 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FocusedPasswordFormFound, 349 IPC_MESSAGE_ROUTED1(AutofillHostMsg_FocusedPasswordFormFound,
346 autofill::PasswordForm) 350 autofill::PasswordForm)
OLDNEW
« no previous file with comments | « components/autofill/content/browser/content_autofill_driver.cc ('k') | components/autofill/content/renderer/autofill_agent.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698