// Copyright 2024 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_DOWNLOAD_INTERNAL_COMMON_DOWNLOAD_FILE_WITH_COPY_H_ #define COMPONENTS_DOWNLOAD_INTERNAL_COMMON_DOWNLOAD_FILE_WITH_COPY_H_ #include "base/files/file_path.h" #include "base/memory/weak_ptr.h" #include "base/task/single_thread_task_runner.h" #include "components/download/public/common/download_file.h" namespace download { class DownloadDestinationObserver; // Implementation of DownloadFile that copies another file to the given // destination. class COMPONENTS_DOWNLOAD_EXPORT DownloadFileWithCopy : public DownloadFile { … }; } // namespace download #endif // COMPONENTS_DOWNLOAD_INTERNAL_COMMON_DOWNLOAD_FILE_WITH_COPY_H_