// Copyright 2023 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_ARCHIVE_ANALYZER_H_ #define CHROME_UTILITY_SAFE_BROWSING_ARCHIVE_ANALYZER_H_ #include <optional> #include "base/files/file.h" #include "base/functional/callback.h" #include "chrome/common/safe_browsing/archive_analyzer_results.h" #include "components/safe_browsing/content/common/proto/download_file_types.pb.h" namespace safe_browsing { FinishedAnalysisCallback; GetTempFileCallback; // Base class for all the archive analyzers. This handles the common behavior // such as initialization, recursing into nested archives, and updating the // `ArchiveAnalyzerResults`. class ArchiveAnalyzer { … }; } // namespace safe_browsing #endif // CHROME_UTILITY_SAFE_BROWSING_ARCHIVE_ANALYZER_H_