| 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 |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 IPC_STRUCT_TRAITS_MEMBER(title) | 55 IPC_STRUCT_TRAITS_MEMBER(title) |
| 56 IPC_STRUCT_TRAITS_MEMBER(creation_time) | 56 IPC_STRUCT_TRAITS_MEMBER(creation_time) |
| 57 IPC_STRUCT_TRAITS_END() | 57 IPC_STRUCT_TRAITS_END() |
| 58 | 58 |
| 59 IPC_STRUCT_TRAITS_BEGIN(ImportedFaviconUsage) | 59 IPC_STRUCT_TRAITS_BEGIN(ImportedFaviconUsage) |
| 60 IPC_STRUCT_TRAITS_MEMBER(favicon_url) | 60 IPC_STRUCT_TRAITS_MEMBER(favicon_url) |
| 61 IPC_STRUCT_TRAITS_MEMBER(png_data) | 61 IPC_STRUCT_TRAITS_MEMBER(png_data) |
| 62 IPC_STRUCT_TRAITS_MEMBER(urls) | 62 IPC_STRUCT_TRAITS_MEMBER(urls) |
| 63 IPC_STRUCT_TRAITS_END() | 63 IPC_STRUCT_TRAITS_END() |
| 64 | 64 |
| 65 IPC_STRUCT_TRAITS_BEGIN(importer::URLKeywordInfo) | 65 IPC_STRUCT_TRAITS_BEGIN(importer::SearchEngineInfo) |
| 66 IPC_STRUCT_TRAITS_MEMBER(url) | 66 IPC_STRUCT_TRAITS_MEMBER(url) |
| 67 IPC_STRUCT_TRAITS_MEMBER(keyword) | 67 IPC_STRUCT_TRAITS_MEMBER(keyword) |
| 68 IPC_STRUCT_TRAITS_MEMBER(display_name) | 68 IPC_STRUCT_TRAITS_MEMBER(display_name) |
| 69 IPC_STRUCT_TRAITS_END() | 69 IPC_STRUCT_TRAITS_END() |
| 70 | 70 |
| 71 IPC_STRUCT_TRAITS_BEGIN(ImporterAutofillFormDataEntry) | 71 IPC_STRUCT_TRAITS_BEGIN(ImporterAutofillFormDataEntry) |
| 72 IPC_STRUCT_TRAITS_MEMBER(name) | 72 IPC_STRUCT_TRAITS_MEMBER(name) |
| 73 IPC_STRUCT_TRAITS_MEMBER(value) | 73 IPC_STRUCT_TRAITS_MEMBER(value) |
| 74 IPC_STRUCT_TRAITS_MEMBER(times_used) | 74 IPC_STRUCT_TRAITS_MEMBER(times_used) |
| 75 IPC_STRUCT_TRAITS_MEMBER(first_used) | 75 IPC_STRUCT_TRAITS_MEMBER(first_used) |
| 76 IPC_STRUCT_TRAITS_MEMBER(last_used) | 76 IPC_STRUCT_TRAITS_MEMBER(last_used) |
| 77 IPC_STRUCT_TRAITS_END() | 77 IPC_STRUCT_TRAITS_END() |
| 78 | 78 |
| 79 #if defined(OS_WIN) | 79 #if defined(OS_WIN) |
| 80 IPC_STRUCT_TRAITS_BEGIN(importer::ImporterIE7PasswordInfo) | 80 IPC_STRUCT_TRAITS_BEGIN(importer::ImporterIE7PasswordInfo) |
| 81 IPC_STRUCT_TRAITS_MEMBER(url_hash) | 81 IPC_STRUCT_TRAITS_MEMBER(url_hash) |
| 82 IPC_STRUCT_TRAITS_MEMBER(encrypted_data) | 82 IPC_STRUCT_TRAITS_MEMBER(encrypted_data) |
| 83 IPC_STRUCT_TRAITS_MEMBER(date_created) | 83 IPC_STRUCT_TRAITS_MEMBER(date_created) |
| 84 IPC_STRUCT_TRAITS_END() | 84 IPC_STRUCT_TRAITS_END() |
| 85 #endif | 85 #endif |
| 86 | 86 |
| 87 #endif // CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ | 87 #endif // CHROME_COMMON_IMPORTER_PROFILE_IMPORT_PROCESS_PARAM_TRAITS_MACROS_H_ |
| OLD | NEW |