blob: 7c7ae1547e852a2df3c0441d9f8fea77114d8156 [file] [log] [blame]
// Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ANALYZER_H_
#define CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ANALYZER_H_
#include "base/files/file.h"
#include "chrome/common/safe_browsing/zip_analyzer_results.h"
namespace safe_browsing {
namespace dmg {
// Analyzes a DMG file and reports the results.
// TODO(rsesek): Rename zip_analyzer::Results to something more generic.
void AnalyzeDMGFile(base::File dmg_file,
safe_browsing::zip_analyzer::Results* results);
} // namespace dmg
} // namespace safe_browsing
#endif // CHROME_UTILITY_SAFE_BROWSING_MAC_DMG_ANALYZER_H_