Index: chrome/common/safe_browsing/zip_analyzer_results.h |
diff --git a/chrome/common/safe_browsing/zip_analyzer_results.h b/chrome/common/safe_browsing/zip_analyzer_results.h |
index b1d0be3fb3dbfc605f26531469d975153347d5ad..a04268fadc2c5c0402f131949c22113f98db46e5 100644 |
--- a/chrome/common/safe_browsing/zip_analyzer_results.h |
+++ b/chrome/common/safe_browsing/zip_analyzer_results.h |
@@ -8,6 +8,9 @@ |
#ifndef CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_RESULTS_H_ |
#define CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_RESULTS_H_ |
+#include <vector> |
+ |
+#include "base/files/file_path.h" |
#include "chrome/common/safe_browsing/csd.pb.h" |
namespace safe_browsing { |
@@ -19,6 +22,7 @@ struct Results { |
bool has_archive; |
google::protobuf::RepeatedPtrField<ClientDownloadRequest_ArchivedBinary> |
archived_binary; |
+ std::vector<base::FilePath::StringType> archived_archive_filetypes; |
Results(); |
~Results(); |
}; |