| 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/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/strings/string16.h" | 10 #include "base/strings/string16.h" |
| 11 #include "base/values.h" | 11 #include "base/values.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/imported_favicon_usage.h" | 14 #include "chrome/common/importer/imported_favicon_usage.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 "components/autofill/core/common/autofill_param_traits_macros.h" |
| 18 #include "components/autofill/core/common/password_form.h" |
| 17 #include "content/public/common/common_param_traits.h" | 19 #include "content/public/common/common_param_traits.h" |
| 18 #include "content/public/common/password_form.h" | |
| 19 #include "ipc/ipc_message_macros.h" | 20 #include "ipc/ipc_message_macros.h" |
| 20 #include "ipc/ipc_message_utils.h" | 21 #include "ipc/ipc_message_utils.h" |
| 21 | 22 |
| 22 #ifndef CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_MESSAGES_H_ | 23 #ifndef CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_MESSAGES_H_ |
| 23 #define CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_MESSAGES_H_ | 24 #define CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_MESSAGES_H_ |
| 24 | 25 |
| 25 namespace IPC { | 26 namespace IPC { |
| 26 | 27 |
| 27 // Traits for importer::SourceProfile struct to pack/unpack. | 28 // Traits for importer::SourceProfile struct to pack/unpack. |
| 28 template <> | 29 template <> |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyBookmarksImportGroup, | 306 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyBookmarksImportGroup, |
| 306 std::vector<ImportedBookmarkEntry>) | 307 std::vector<ImportedBookmarkEntry>) |
| 307 | 308 |
| 308 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyFaviconsImportStart, | 309 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyFaviconsImportStart, |
| 309 int /* total number of favicons */) | 310 int /* total number of favicons */) |
| 310 | 311 |
| 311 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyFaviconsImportGroup, | 312 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyFaviconsImportGroup, |
| 312 std::vector<ImportedFaviconUsage>) | 313 std::vector<ImportedFaviconUsage>) |
| 313 | 314 |
| 314 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyPasswordFormReady, | 315 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyPasswordFormReady, |
| 315 content::PasswordForm) | 316 autofill::PasswordForm) |
| 316 | 317 |
| 317 IPC_MESSAGE_CONTROL2(ProfileImportProcessHostMsg_NotifyKeywordsReady, | 318 IPC_MESSAGE_CONTROL2(ProfileImportProcessHostMsg_NotifyKeywordsReady, |
| 318 std::vector<importer::URLKeywordInfo>, // url_keywords | 319 std::vector<importer::URLKeywordInfo>, // url_keywords |
| 319 bool /* unique on host and path */) | 320 bool /* unique on host and path */) |
| 320 | 321 |
| 321 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyFirefoxSearchEngData, | 322 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyFirefoxSearchEngData, |
| 322 std::vector<std::string>) // search_engine_data | 323 std::vector<std::string>) // search_engine_data |
| 323 | 324 |
| 324 #if defined(OS_WIN) | 325 #if defined(OS_WIN) |
| 325 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyIE7PasswordInfo, | 326 IPC_MESSAGE_CONTROL1(ProfileImportProcessHostMsg_NotifyIE7PasswordInfo, |
| 326 importer::ImporterIE7PasswordInfo) // password_info | 327 importer::ImporterIE7PasswordInfo) // password_info |
| 327 #endif | 328 #endif |
| OLD | NEW |