OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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, no traditonal include guard. | 5 // Multiply-included message file, no traditonal include guard. |
6 #include <string> | 6 #include <string> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "base/strings/string16.h" | 9 #include "base/strings/string16.h" |
10 #include "base/values.h" | 10 #include "base/values.h" |
11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
12 #include "chrome/common/common_param_traits_macros.h" | 12 #include "chrome/common/common_param_traits_macros.h" |
13 #include "chrome/common/importer/imported_bookmark_entry.h" | 13 #include "chrome/common/importer/imported_bookmark_entry.h" |
14 #include "chrome/common/importer/importer_autofill_form_data_entry.h" | 14 #include "chrome/common/importer/importer_autofill_form_data_entry.h" |
15 #include "chrome/common/importer/importer_data_types.h" | 15 #include "chrome/common/importer/importer_data_types.h" |
16 #include "chrome/common/importer/importer_url_row.h" | 16 #include "chrome/common/importer/importer_url_row.h" |
17 #include "chrome/common/importer/profile_import_process_param_traits_macros.h" | 17 #include "chrome/common/importer/profile_import_process_param_traits_macros.h" |
18 #include "components/autofill/content/common/autofill_param_traits_macros.h" | 18 #include "components/autofill/content/common/autofill_param_traits_macros.h" |
19 #include "components/autofill/core/common/password_form.h" | 19 #include "components/autofill/core/common/password_form.h" |
20 #include "components/favicon_base/favicon_usage_data.h" | 20 #include "components/favicon_base/favicon_usage_data.h" |
| 21 #include "content/public/common/common_param_traits.h" |
21 #include "ipc/ipc_message_macros.h" | 22 #include "ipc/ipc_message_macros.h" |
22 #include "ipc/ipc_message_utils.h" | 23 #include "ipc/ipc_message_utils.h" |
23 #include "url/ipc/url_param_traits.h" | |
24 | 24 |
25 // Force multiple inclusion of the param traits file to generate all methods. | 25 // Force multiple inclusion of the param traits file to generate all methods. |
26 #undef CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ | 26 #undef CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ |
27 | 27 |
28 #define IPC_MESSAGE_START ProfileImportMsgStart | 28 #define IPC_MESSAGE_START ProfileImportMsgStart |
29 | 29 |
30 //----------------------------------------------------------------------------- | 30 //----------------------------------------------------------------------------- |
31 // ProfileImportProcess messages | 31 // ProfileImportProcess messages |
32 // These are messages sent from the browser to the profile import process. | 32 // These are messages sent from the browser to the profile import process. |
33 IPC_MESSAGE_CONTROL3(ProfileImportProcessMsg_StartImport, | 33 IPC_MESSAGE_CONTROL3(ProfileImportProcessMsg_StartImport, |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_AutofillFormDataImportStart, | 96 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_AutofillFormDataImportStart, |
97 int /* total number of entries to be imported */) | 97 int /* total number of entries to be imported */) |
98 | 98 |
99 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_AutofillFormDataImportGroup, | 99 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_AutofillFormDataImportGroup, |
100 std::vector<ImporterAutofillFormDataEntry>) | 100 std::vector<ImporterAutofillFormDataEntry>) |
101 | 101 |
102 #if defined(OS_WIN) | 102 #if defined(OS_WIN) |
103 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyIE7PasswordInfo, | 103 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyIE7PasswordInfo, |
104 importer::ImporterIE7PasswordInfo) // password_info | 104 importer::ImporterIE7PasswordInfo) // password_info |
105 #endif | 105 #endif |
OLD | NEW |