OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // Singly or Multiply-included shared traits file depending on circumstances. | 5 // Singly or Multiply-included shared traits file depending on circumstances. |
6 // This allows the use of IPC serialization macros in more than one IPC message | 6 // This allows the use of IPC serialization macros in more than one IPC message |
7 // file. | 7 // file. |
8 #ifndef CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ | 8 #ifndef CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ |
9 #define CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ | 9 #define CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ |
10 | 10 |
11 #include <string> | 11 #include <string> |
12 #include <vector> | 12 #include <vector> |
13 | 13 |
14 #include "base/basictypes.h" | |
15 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
16 #include "base/values.h" | 15 #include "base/values.h" |
| 16 #include "build/build_config.h" |
17 #include "chrome/common/common_param_traits_macros.h" | 17 #include "chrome/common/common_param_traits_macros.h" |
18 #include "chrome/common/importer/imported_bookmark_entry.h" | 18 #include "chrome/common/importer/imported_bookmark_entry.h" |
19 #include "chrome/common/importer/importer_autofill_form_data_entry.h" | 19 #include "chrome/common/importer/importer_autofill_form_data_entry.h" |
20 #include "chrome/common/importer/importer_data_types.h" | 20 #include "chrome/common/importer/importer_data_types.h" |
21 #include "chrome/common/importer/importer_url_row.h" | 21 #include "chrome/common/importer/importer_url_row.h" |
22 #include "components/autofill/content/common/autofill_param_traits_macros.h" | 22 #include "components/autofill/content/common/autofill_param_traits_macros.h" |
23 #include "components/autofill/core/common/password_form.h" | 23 #include "components/autofill/core/common/password_form.h" |
24 #include "components/favicon_base/favicon_usage_data.h" | 24 #include "components/favicon_base/favicon_usage_data.h" |
25 #include "content/public/common/common_param_traits.h" | 25 #include "content/public/common/common_param_traits.h" |
26 #include "ipc/ipc_message_macros.h" | 26 #include "ipc/ipc_message_macros.h" |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 | 84 |
85 #if defined(OS_WIN) | 85 #if defined(OS_WIN) |
86 IPC_STRUCT_TRAITS_BEGIN(importer::ImporterIE7PasswordInfo) | 86 IPC_STRUCT_TRAITS_BEGIN(importer::ImporterIE7PasswordInfo) |
87 IPC_STRUCT_TRAITS_MEMBER(url_hash) | 87 IPC_STRUCT_TRAITS_MEMBER(url_hash) |
88 IPC_STRUCT_TRAITS_MEMBER(encrypted_data) | 88 IPC_STRUCT_TRAITS_MEMBER(encrypted_data) |
89 IPC_STRUCT_TRAITS_MEMBER(date_created) | 89 IPC_STRUCT_TRAITS_MEMBER(date_created) |
90 IPC_STRUCT_TRAITS_END() | 90 IPC_STRUCT_TRAITS_END() |
91 #endif | 91 #endif |
92 | 92 |
93 #endif // CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ | 93 #endif // CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ |
OLD | NEW |