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 message file, so no include guard. | 5 // Multiply-included message file, so no include guard. |
6 | 6 |
7 #if defined(OS_WIN) | 7 #if defined(OS_WIN) |
8 #include <Windows.h> | 8 #include <Windows.h> |
9 #endif // defined(OS_WIN) | 9 #endif // defined(OS_WIN) |
10 | 10 |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_FUNDAMENTAL_MEMBER(length) | 99 IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_FUNDAMENTAL_MEMBER(length) |
100 IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_COMPLEX_MEMBER(signature) | 100 IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_COMPLEX_MEMBER(signature) |
101 IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_COMPLEX_MEMBER(image_headers) | 101 IPC_PROTOBUF_MESSAGE_TRAITS_OPTIONAL_COMPLEX_MEMBER(image_headers) |
102 IPC_PROTOBUF_MESSAGE_TRAITS_END() | 102 IPC_PROTOBUF_MESSAGE_TRAITS_END() |
103 | 103 |
104 IPC_STRUCT_TRAITS_BEGIN(safe_browsing::zip_analyzer::Results) | 104 IPC_STRUCT_TRAITS_BEGIN(safe_browsing::zip_analyzer::Results) |
105 IPC_STRUCT_TRAITS_MEMBER(success) | 105 IPC_STRUCT_TRAITS_MEMBER(success) |
106 IPC_STRUCT_TRAITS_MEMBER(has_executable) | 106 IPC_STRUCT_TRAITS_MEMBER(has_executable) |
107 IPC_STRUCT_TRAITS_MEMBER(has_archive) | 107 IPC_STRUCT_TRAITS_MEMBER(has_archive) |
108 IPC_STRUCT_TRAITS_MEMBER(archived_binary) | 108 IPC_STRUCT_TRAITS_MEMBER(archived_binary) |
| 109 IPC_STRUCT_TRAITS_MEMBER(archived_archive_filetypes) |
109 IPC_STRUCT_TRAITS_END() | 110 IPC_STRUCT_TRAITS_END() |
110 #endif // FULL_SAFE_BROWSING | 111 #endif // FULL_SAFE_BROWSING |
111 | 112 |
112 #if defined(OS_WIN) | 113 #if defined(OS_WIN) |
113 IPC_STRUCT_BEGIN(ChromeUtilityMsg_GetSaveFileName_Params) | 114 IPC_STRUCT_BEGIN(ChromeUtilityMsg_GetSaveFileName_Params) |
114 IPC_STRUCT_MEMBER(HWND, owner) | 115 IPC_STRUCT_MEMBER(HWND, owner) |
115 IPC_STRUCT_MEMBER(DWORD, flags) | 116 IPC_STRUCT_MEMBER(DWORD, flags) |
116 IPC_STRUCT_MEMBER(GetOpenFileNameFilter, filters) | 117 IPC_STRUCT_MEMBER(GetOpenFileNameFilter, filters) |
117 IPC_STRUCT_MEMBER(int, one_based_filter_index) | 118 IPC_STRUCT_MEMBER(int, one_based_filter_index) |
118 IPC_STRUCT_MEMBER(base::FilePath, suggested_filename) | 119 IPC_STRUCT_MEMBER(base::FilePath, suggested_filename) |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetOpenFileName_Result, | 250 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetOpenFileName_Result, |
250 base::FilePath /* directory */, | 251 base::FilePath /* directory */, |
251 std::vector<base::FilePath> /* filenames */) | 252 std::vector<base::FilePath> /* filenames */) |
252 IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_GetSaveFileName_Failed) | 253 IPC_MESSAGE_CONTROL0(ChromeUtilityHostMsg_GetSaveFileName_Failed) |
253 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetSaveFileName_Result, | 254 IPC_MESSAGE_CONTROL2(ChromeUtilityHostMsg_GetSaveFileName_Result, |
254 base::FilePath /* path */, | 255 base::FilePath /* path */, |
255 int /* one_based_filter_index */) | 256 int /* one_based_filter_index */) |
256 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_BuildDirectWriteFontCache, | 257 IPC_MESSAGE_CONTROL1(ChromeUtilityHostMsg_BuildDirectWriteFontCache, |
257 base::FilePath /* cache file path */) | 258 base::FilePath /* cache file path */) |
258 #endif // defined(OS_WIN) | 259 #endif // defined(OS_WIN) |
OLD | NEW |