| 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 "components/autofill/common/autocheckout_status.h" |
| 11 #include "chrome/common/autofill/web_element_descriptor.h" | 11 #include "components/autofill/common/form_data.h" |
| 12 #include "chrome/common/common_param_traits_macros.h" | 12 #include "components/autofill/common/form_data_predictions.h" |
| 13 #include "chrome/common/form_data.h" | 13 #include "components/autofill/common/form_field_data.h" |
| 14 #include "chrome/common/form_data_predictions.h" | 14 #include "components/autofill/common/form_field_data_predictions.h" |
| 15 #include "chrome/common/form_field_data.h" | 15 #include "components/autofill/common/password_form_fill_data.h" |
| 16 #include "chrome/common/form_field_data_predictions.h" | 16 #include "components/autofill/common/web_element_descriptor.h" |
| 17 #include "chrome/common/password_form_fill_data.h" | |
| 18 #include "content/public/common/common_param_traits_macros.h" | 17 #include "content/public/common/common_param_traits_macros.h" |
| 19 #include "content/public/common/password_form.h" | 18 #include "content/public/common/password_form.h" |
| 20 #include "content/public/common/ssl_status.h" | 19 #include "content/public/common/ssl_status.h" |
| 21 #include "googleurl/src/gurl.h" | 20 #include "googleurl/src/gurl.h" |
| 22 #include "ipc/ipc_message_macros.h" | 21 #include "ipc/ipc_message_macros.h" |
| 23 #include "ipc/ipc_message_utils.h" | 22 #include "ipc/ipc_message_utils.h" |
| 24 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" | 23 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFormElement.h" |
| 25 #include "ui/gfx/rect.h" | 24 #include "ui/gfx/rect.h" |
| 26 | 25 |
| 27 #define IPC_MESSAGE_START AutofillMsgStart | 26 #define IPC_MESSAGE_START AutofillMsgStart |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 268 FormFieldData /* the form field */, | 267 FormFieldData /* the form field */, |
| 269 gfx::RectF /* input field bounds, window-relative */, | 268 gfx::RectF /* input field bounds, window-relative */, |
| 270 std::vector<string16> /* suggestions */) | 269 std::vector<string16> /* suggestions */) |
| 271 | 270 |
| 272 // Inform browser of data list values for the curent field. | 271 // Inform browser of data list values for the curent field. |
| 273 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, | 272 IPC_MESSAGE_ROUTED4(AutofillHostMsg_SetDataList, |
| 274 std::vector<string16> /* values */, | 273 std::vector<string16> /* values */, |
| 275 std::vector<string16> /* labels */, | 274 std::vector<string16> /* labels */, |
| 276 std::vector<string16> /* icons */, | 275 std::vector<string16> /* icons */, |
| 277 std::vector<int> /* unique ids */) | 276 std::vector<int> /* unique ids */) |
| OLD | NEW |