blob: ba6128f573c68b1b3b29a0cf38947d51ac81c266 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// 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_DOCUMENT_ANALYZER_H_
#define CHROME_UTILITY_SAFE_BROWSING_DOCUMENT_ANALYZER_H_
#include "base/files/file.h"
#include "base/files/file_path.h"
namespace safe_browsing {
struct DocumentAnalyzerResults;
namespace document_analyzer {
void AnalyzeDocument(base::File office_file,
const base::FilePath& file_path,
DocumentAnalyzerResults* results);
} // namespace document_analyzer
} // namespace safe_browsing
#endif // CHROME_UTILITY_SAFE_BROWSING_DOCUMENT_ANALYZER_H_