| 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 param traits file, so no include guard. | 5 // Multiply-included param traits file, so no include guard. |
| 6 | 6 |
| 7 #if !defined(FULL_SAFE_BROWSING) | 7 #if !defined(FULL_SAFE_BROWSING) |
| 8 #error FULL_SAFE_BROWSING should be defined. | 8 #error FULL_SAFE_BROWSING should be defined. |
| 9 #endif | 9 #endif |
| 10 | 10 |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_COMPLEX_MEMBER(signature) | 84 IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_COMPLEX_MEMBER(signature) |
| 85 IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_COMPLEX_MEMBER(image_headers) | 85 IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_COMPLEX_MEMBER(image_headers) |
| 86 IPC_PROTOBUF_MESSAGE_TRAITS_END() | 86 IPC_PROTOBUF_MESSAGE_TRAITS_END() |
| 87 | 87 |
| 88 IPC_STRUCT_TRAITS_BEGIN(safe_browsing::ArchiveAnalyzerResults) | 88 IPC_STRUCT_TRAITS_BEGIN(safe_browsing::ArchiveAnalyzerResults) |
| 89 IPC_STRUCT_TRAITS_MEMBER(success) | 89 IPC_STRUCT_TRAITS_MEMBER(success) |
| 90 IPC_STRUCT_TRAITS_MEMBER(has_executable) | 90 IPC_STRUCT_TRAITS_MEMBER(has_executable) |
| 91 IPC_STRUCT_TRAITS_MEMBER(has_archive) | 91 IPC_STRUCT_TRAITS_MEMBER(has_archive) |
| 92 IPC_STRUCT_TRAITS_MEMBER(archived_binary) | 92 IPC_STRUCT_TRAITS_MEMBER(archived_binary) |
| 93 IPC_STRUCT_TRAITS_MEMBER(archived_archive_filenames) | 93 IPC_STRUCT_TRAITS_MEMBER(archived_archive_filenames) |
| 94 #if defined(OS_MACOSX) |
| 95 IPC_STRUCT_TRAITS_MEMBER(signature_blob) |
| 96 #endif // OS_MACOSX |
| 94 IPC_STRUCT_TRAITS_END() | 97 IPC_STRUCT_TRAITS_END() |
| OLD | NEW |