| 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 "content/public/common/webkit_param_traits.h" | 10 #include "chrome/common/common_param_traits_macros.h" |
| 11 #include "ipc/ipc_message_macros.h" | 11 #include "ipc/ipc_message_macros.h" |
| 12 #include "ipc/ipc_message_utils.h" | 12 #include "ipc/ipc_message_utils.h" |
| 13 #include "ui/gfx/rect.h" | 13 #include "ui/gfx/rect.h" |
| 14 #include "webkit/forms/form_data.h" | 14 #include "webkit/forms/form_data.h" |
| 15 #include "webkit/forms/form_data_predictions.h" | 15 #include "webkit/forms/form_data_predictions.h" |
| 16 #include "webkit/forms/form_field.h" | 16 #include "webkit/forms/form_field.h" |
| 17 #include "webkit/forms/form_field_predictions.h" | 17 #include "webkit/forms/form_field_predictions.h" |
| 18 #include "webkit/forms/password_form.h" | 18 #include "webkit/forms/password_form.h" |
| 19 #include "webkit/forms/password_form_dom_manager.h" | 19 #include "webkit/forms/password_form_dom_manager.h" |
| 20 | 20 |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 webkit::forms::FormField /* the form field */, | 225 webkit::forms::FormField /* the form field */, |
| 226 gfx::Rect /* input field bounds, window-relative */, | 226 gfx::Rect /* input field bounds, window-relative */, |
| 227 std::vector<string16> /* suggestions */) | 227 std::vector<string16> /* suggestions */) |
| 228 | 228 |
| 229 // Inform browser of data list values for the curent field. | 229 // Inform browser of data list values for the curent field. |
| 230 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, | 230 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, |
| 231 std::vector<string16> /* values */, | 231 std::vector<string16> /* values */, |
| 232 std::vector<string16> /* labels */, | 232 std::vector<string16> /* labels */, |
| 233 std::vector<string16> /* icons */, | 233 std::vector<string16> /* icons */, |
| 234 std::vector<int> /* unique ids */) | 234 std::vector<int> /* unique ids */) |
| OLD | NEW |