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.
5 #ifndef CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ANALYZER_H_
6 #define CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ANALYZER_H_
8 #include "base/files/file.h"
9 #include "chrome/common/safe_browsing/zip_analyzer_results.h"
11 namespace safe_browsing
{
14 // Analyzes a DMG file and reports the results.
15 // TODO(rsesek): Rename zip_analyzer::Results to something more generic.
16 void AnalyzeDMGFile(base::File dmg_file
,
17 safe_browsing::zip_analyzer::Results
* results
);
21 } // namespace safe_browsing
23 #endif // CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ANALYZER_H_