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

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

Issue 1262753002: [SafeBrowsing] Send pings for Zip files that contain other archives. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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/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();
};

Powered by Google App Engine
This is Rietveld 408576698