| OLD | NEW |
| 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 "chrome/common/autofill/autocheckout_status.h" | 10 #include "chrome/common/autofill/autocheckout_status.h" |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange, | 193 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange, |
| 194 FormData /* the form */, | 194 FormData /* the form */, |
| 195 FormFieldData /* the form field */, | 195 FormFieldData /* the form field */, |
| 196 base::TimeTicks /* timestamp */) | 196 base::TimeTicks /* timestamp */) |
| 197 | 197 |
| 198 // Queries the browser for Autofill suggestions for a form input field. | 198 // Queries the browser for Autofill suggestions for a form input field. |
| 199 IPC_MESSAGE_ROUTED5(AutofillHostMsg_QueryFormFieldAutofill, | 199 IPC_MESSAGE_ROUTED5(AutofillHostMsg_QueryFormFieldAutofill, |
| 200 int /* id of this message */, | 200 int /* id of this message */, |
| 201 FormData /* the form */, | 201 FormData /* the form */, |
| 202 FormFieldData /* the form field */, | 202 FormFieldData /* the form field */, |
| 203 gfx::Rect /* input field bounds, window-relative */, | 203 gfx::RectF /* input field bounds, window-relative */, |
| 204 bool /* display warning if autofill disabled */) | 204 bool /* display warning if autofill disabled */) |
| 205 | 205 |
| 206 // Sent when the popup with Autofill suggestions for a form is shown. | 206 // Sent when the popup with Autofill suggestions for a form is shown. |
| 207 IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidShowAutofillSuggestions, | 207 IPC_MESSAGE_ROUTED1(AutofillHostMsg_DidShowAutofillSuggestions, |
| 208 bool /* is this a new popup? */) | 208 bool /* is this a new popup? */) |
| 209 | 209 |
| 210 // Instructs the browser to fill in the values for a form using Autofill | 210 // Instructs the browser to fill in the values for a form using Autofill |
| 211 // profile data. | 211 // profile data. |
| 212 IPC_MESSAGE_ROUTED4(AutofillHostMsg_FillAutofillFormData, | 212 IPC_MESSAGE_ROUTED4(AutofillHostMsg_FillAutofillFormData, |
| 213 int /* id of this message */, | 213 int /* id of this message */, |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 | 259 |
| 260 // Instruct the browser that a password mapping has been found for a field. | 260 // Instruct the browser that a password mapping has been found for a field. |
| 261 IPC_MESSAGE_ROUTED2(AutofillHostMsg_AddPasswordFormMapping, | 261 IPC_MESSAGE_ROUTED2(AutofillHostMsg_AddPasswordFormMapping, |
| 262 FormFieldData, /* the user name field */ | 262 FormFieldData, /* the user name field */ |
| 263 PasswordFormFillData /* password pairings */) | 263 PasswordFormFillData /* password pairings */) |
| 264 | 264 |
| 265 // Instruct the browser to show a popup with the following suggestions from the | 265 // Instruct the browser to show a popup with the following suggestions from the |
| 266 // password manager. | 266 // password manager. |
| 267 IPC_MESSAGE_ROUTED3(AutofillHostMsg_ShowPasswordSuggestions, | 267 IPC_MESSAGE_ROUTED3(AutofillHostMsg_ShowPasswordSuggestions, |
| 268 FormFieldData /* the form field */, | 268 FormFieldData /* the form field */, |
| 269 gfx::Rect /* input field bounds, window-relative */, | 269 gfx::RectF /* input field bounds, window-relative */, |
| 270 std::vector<string16> /* suggestions */) | 270 std::vector<string16> /* suggestions */) |
| 271 | 271 |
| 272 // Inform browser of data list values for the curent field. | 272 // Inform browser of data list values for the curent field. |
| 273 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, | 273 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, |
| 274 std::vector<string16> /* values */, | 274 std::vector<string16> /* values */, |
| 275 std::vector<string16> /* labels */, | 275 std::vector<string16> /* labels */, |
| 276 std::vector<string16> /* icons */, | 276 std::vector<string16> /* icons */, |
| 277 std::vector<int> /* unique ids */) | 277 std::vector<int> /* unique ids */) |
| OLD | NEW |