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 "components/autofill/common/autocheckout_status.h" | 10 #include "components/autofill/common/autocheckout_status.h" |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 autofill::FormData /* form */, | 200 autofill::FormData /* form */, |
201 base::TimeTicks /* timestamp */) | 201 base::TimeTicks /* timestamp */) |
202 | 202 |
203 // Notification that a form field's value has changed. | 203 // Notification that a form field's value has changed. |
204 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange, | 204 IPC_MESSAGE_ROUTED3(AutofillHostMsg_TextFieldDidChange, |
205 autofill::FormData /* the form */, | 205 autofill::FormData /* the form */, |
206 autofill::FormFieldData /* the form field */, | 206 autofill::FormFieldData /* the form field */, |
207 base::TimeTicks /* timestamp */) | 207 base::TimeTicks /* timestamp */) |
208 | 208 |
209 // Shows the Autocheckout bubble if the conditions are right. | 209 // Shows the Autocheckout bubble if the conditions are right. |
210 IPC_MESSAGE_ROUTED3(AutofillHostMsg_MaybeShowAutocheckoutBubble, | 210 IPC_MESSAGE_ROUTED2(AutofillHostMsg_MaybeShowAutocheckoutBubble, |
211 GURL /* source_url */, | 211 autofill::FormData /* form */, |
212 content::SSLStatus /* ssl_status */, | |
213 gfx::RectF /* bounding_box */) | 212 gfx::RectF /* bounding_box */) |
214 | 213 |
215 // Queries the browser for Autofill suggestions for a form input field. | 214 // Queries the browser for Autofill suggestions for a form input field. |
216 IPC_MESSAGE_ROUTED5(AutofillHostMsg_QueryFormFieldAutofill, | 215 IPC_MESSAGE_ROUTED5(AutofillHostMsg_QueryFormFieldAutofill, |
217 int /* id of this message */, | 216 int /* id of this message */, |
218 autofill::FormData /* the form */, | 217 autofill::FormData /* the form */, |
219 autofill::FormFieldData /* the form field */, | 218 autofill::FormFieldData /* the form field */, |
220 gfx::RectF /* input field bounds, window-relative */, | 219 gfx::RectF /* input field bounds, window-relative */, |
221 bool /* display warning if autofill disabled */) | 220 bool /* display warning if autofill disabled */) |
222 | 221 |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
284 autofill::FormFieldData /* the form field */, | 283 autofill::FormFieldData /* the form field */, |
285 gfx::RectF /* input field bounds, window-relative */, | 284 gfx::RectF /* input field bounds, window-relative */, |
286 std::vector<base::string16> /* suggestions */) | 285 std::vector<base::string16> /* suggestions */) |
287 | 286 |
288 // Inform browser of data list values for the curent field. | 287 // Inform browser of data list values for the curent field. |
289 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, | 288 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, |
290 std::vector<base::string16> /* values */, | 289 std::vector<base::string16> /* values */, |
291 std::vector<base::string16> /* labels */, | 290 std::vector<base::string16> /* labels */, |
292 std::vector<base::string16> /* icons */, | 291 std::vector<base::string16> /* icons */, |
293 std::vector<int> /* unique ids */) | 292 std::vector<int> /* unique ids */) |
OLD | NEW |