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/common_param_traits_macros.h" | 10 #include "chrome/common/common_param_traits_macros.h" |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 | 136 |
137 // Sent when requestAutocomplete() succeeds. Tells the renderer to Autofill the | 137 // Sent when requestAutocomplete() succeeds. Tells the renderer to Autofill the |
138 // form that requested autocomplete with the |form_data| values input by the | 138 // form that requested autocomplete with the |form_data| values input by the |
139 // user. | 139 // user. |
140 IPC_MESSAGE_ROUTED1(AutofillMsg_RequestAutocompleteSuccess, | 140 IPC_MESSAGE_ROUTED1(AutofillMsg_RequestAutocompleteSuccess, |
141 FormData /* form_data */) | 141 FormData /* form_data */) |
142 | 142 |
143 // Sent when requestAutocomplete() fails. Currently, this happens when a form is | 143 // Sent when requestAutocomplete() fails. Currently, this happens when a form is |
144 // requested to be autocompleted with no input or select tags with autocomplete | 144 // requested to be autocompleted with no input or select tags with autocomplete |
145 // attributes. | 145 // attributes. |
146 IPC_MESSAGE_ROUTED0(AutofillMsg_RequestAutocompleteError); | 146 IPC_MESSAGE_ROUTED0(AutofillMsg_RequestAutocompleteError) |
147 | 147 |
148 // Autofill messages sent from the renderer to the browser. | 148 // Autofill messages sent from the renderer to the browser. |
149 | 149 |
150 // Notification that forms have been seen that are candidates for | 150 // Notification that forms have been seen that are candidates for |
151 // filling/submitting by the AutofillManager. | 151 // filling/submitting by the AutofillManager. |
152 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, | 152 IPC_MESSAGE_ROUTED2(AutofillHostMsg_FormsSeen, |
153 std::vector<FormData> /* forms */, | 153 std::vector<FormData> /* forms */, |
154 base::TimeTicks /* timestamp */) | 154 base::TimeTicks /* timestamp */) |
155 | 155 |
156 // Notification that password forms have been seen that are candidates for | 156 // Notification that password forms have been seen that are candidates for |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 FormFieldData /* the form field */, | 239 FormFieldData /* the form field */, |
240 gfx::Rect /* input field bounds, window-relative */, | 240 gfx::Rect /* input field bounds, window-relative */, |
241 std::vector<string16> /* suggestions */) | 241 std::vector<string16> /* suggestions */) |
242 | 242 |
243 // Inform browser of data list values for the curent field. | 243 // Inform browser of data list values for the curent field. |
244 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, | 244 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, |
245 std::vector<string16> /* values */, | 245 std::vector<string16> /* values */, |
246 std::vector<string16> /* labels */, | 246 std::vector<string16> /* labels */, |
247 std::vector<string16> /* icons */, | 247 std::vector<string16> /* icons */, |
248 std::vector<int> /* unique ids */) | 248 std::vector<int> /* unique ids */) |
OLD | NEW |