| Index: chrome/common/safe_browsing/archive_analyzer_results.h
|
| diff --git a/chrome/common/safe_browsing/archive_analyzer_results.h b/chrome/common/safe_browsing/archive_analyzer_results.h
|
| index 0728d9331fbb9a6166c13970b61e26b9cc31dd71..a9635aac587135ba306d9c9eb62eeef3e44de5aa 100644
|
| --- a/chrome/common/safe_browsing/archive_analyzer_results.h
|
| +++ b/chrome/common/safe_browsing/archive_analyzer_results.h
|
| @@ -11,6 +11,7 @@
|
| #include <vector>
|
|
|
| #include "base/files/file_path.h"
|
| +#include "build/build_config.h"
|
| #include "components/safe_browsing/csd.pb.h"
|
|
|
| namespace safe_browsing {
|
| @@ -22,6 +23,9 @@ struct ArchiveAnalyzerResults {
|
| google::protobuf::RepeatedPtrField<ClientDownloadRequest_ArchivedBinary>
|
| archived_binary;
|
| std::vector<base::FilePath> archived_archive_filenames;
|
| +#if defined(OS_MACOSX)
|
| + std::vector<uint8_t> signature_blob;
|
| +#endif // OS_MACOSX
|
| ArchiveAnalyzerResults();
|
| ArchiveAnalyzerResults(const ArchiveAnalyzerResults& other);
|
| ~ArchiveAnalyzerResults();
|
|
|