Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4980)

Unified Diff: chrome/common/safe_browsing/archive_analyzer_results.h

Issue 2934373002: Record Code Signature of Downloaded DMG files (Closed)
Patch Set: correcting rebase mixup Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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();

Powered by Google App Engine
This is Rietveld 408576698