// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_BROWSER_DOWNLOAD_SAVE_FILE_H_ #define CONTENT_BROWSER_DOWNLOAD_SAVE_FILE_H_ #include <memory> #include <string> #include "base/files/file_path.h" #include "components/download/public/common/base_file.h" #include "content/browser/download/save_types.h" namespace content { // SaveFile ---------------------------------------------------------------- // These objects live exclusively on the download task runner and handle the // writing operations for one save item. These objects live only for the // duration that the saving job is 'in progress': once the saving job has been // completed or canceled, the SaveFile is destroyed. One SaveFile object // represents one item in a save session. class SaveFile { … }; } // namespace content #endif // CONTENT_BROWSER_DOWNLOAD_SAVE_FILE_H_