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

Side by Side Diff: chrome/common/safe_browsing/zip_analyzer.h

Issue 2900803002: Renaming zip_analyzer_results to archive_analyzer_results (Closed)
Patch Set: minor fixups Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // This file contains the zip file analysis implementation for download 5 // This file contains the zip file analysis implementation for download
6 // protection, which runs in a sandboxed utility process. 6 // protection, which runs in a sandboxed utility process.
7 7
8 #ifndef CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_H_ 8 #ifndef CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_H_
9 #define CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_H_ 9 #define CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_H_
10 10
11 #include "base/files/file.h" 11 #include "base/files/file.h"
12 #include "components/safe_browsing/csd.pb.h" 12 #include "components/safe_browsing/csd.pb.h"
13 13
14 namespace safe_browsing { 14 namespace safe_browsing {
15
16 struct ArchiveAnalyzerResults;
17
15 namespace zip_analyzer { 18 namespace zip_analyzer {
16 19
17 struct Results;
18
19 void AnalyzeZipFile(base::File zip_file, 20 void AnalyzeZipFile(base::File zip_file,
20 base::File temp_file, 21 base::File temp_file,
21 Results* results); 22 ArchiveAnalyzerResults* results);
22 23
23 } // namespace zip_analyzer 24 } // namespace zip_analyzer
24 } // namespace safe_browsing 25 } // namespace safe_browsing
25 26
26 #endif // CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_H_ 27 #endif // CHROME_COMMON_SAFE_BROWSING_ZIP_ANALYZER_H_
OLDNEW
« no previous file with comments | « chrome/common/safe_browsing/archive_analyzer_results.cc ('k') | chrome/common/safe_browsing/zip_analyzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698