// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef COMPONENTS_ENTERPRISE_COMMON_FILES_SCAN_DATA_H_ #define COMPONENTS_ENTERPRISE_COMMON_FILES_SCAN_DATA_H_ #include <map> #include <set> #include <vector> #include "base/files/file_path.h" #include "base/functional/callback.h" #include "base/memory/weak_ptr.h" #include "ui/base/clipboard/file_info.h" namespace enterprise_connectors { // Helper class to handle files going through content analysis by expanding // directories, aggregating verdicts, etc. class FilesScanData final { … }; } // namespace enterprise_connectors #endif // COMPONENTS_ENTERPRISE_COMMON_FILES_SCAN_DATA_H_