Revert "Reland c91b178b07b0d - Delete dead signin code (SigninGlobalError)"
[chromium-blink-merge.git] / chrome / common / safe_browsing / zip_analyzer_results.h
bloba04268fadc2c5c0402f131949c22113f98db46e5
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 //
5 // This file contains the zip file analysis implementation for download
6 // protection, which runs in a sandboxed utility process.
8 #ifndef CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_RESULTS_H_
9 #define CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_RESULTS_H_
11 #include <vector>
13 #include "base/files/file_path.h"
14 #include "chrome/common/safe_browsing/csd.pb.h"
16 namespace safe_browsing {
17 namespace zip_analyzer {
19 struct Results {
20 bool success;
21 bool has_executable;
22 bool has_archive;
23 google::protobuf::RepeatedPtrField<ClientDownloadRequest_ArchivedBinary>
24 archived_binary;
25 std::vector<base::FilePath::StringType> archived_archive_filetypes;
26 Results();
27 ~Results();
30 } // namespace zip_analyzer
31 } // namespace safe_browsing
33 #endif // CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_RESULTS_H_