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

Side by Side Diff: chrome/utility/safe_browsing/mac/dmg_analyzer.h

Issue 2900803002: Renaming zip_analyzer_results to archive_analyzer_results (Closed)
Patch Set: updating preprocessor macros 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 2015 The Chromium Authors. All rights reserved. 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 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 #ifndef CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ANALYZER_H_ 5 #ifndef CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ANALYZER_H_
6 #define CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ANALYZER_H_ 6 #define CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ANALYZER_H_
7 7
8 #include "base/files/file.h" 8 #include "base/files/file.h"
9 #include "chrome/common/safe_browsing/zip_analyzer_results.h" 9 #include "chrome/common/safe_browsing/archive_analyzer_results.h"
10 10
11 namespace safe_browsing { 11 namespace safe_browsing {
12 namespace dmg { 12 namespace dmg {
13 13
14 // Analyzes a DMG file and reports the results. 14 // Analyzes a DMG file and reports the results.
vakh (use Gerrit instead) 2017/05/23 17:34:31 Optional: Comment does not add any information tha
mortonm 2017/05/23 17:53:51 Done.
15 // TODO(rsesek): Rename zip_analyzer::Results to something more generic. 15 void AnalyzeDMGFile(base::File dmg_file, ArchiveAnalyzerResults* results);
16 void AnalyzeDMGFile(base::File dmg_file,
17 safe_browsing::zip_analyzer::Results* results);
18
19 16
20 } // namespace dmg 17 } // namespace dmg
21 } // namespace safe_browsing 18 } // namespace safe_browsing
22 19
23 #endif // CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ANALYZER_H_ 20 #endif // CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ANALYZER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698