// 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_TYPES_H_ #define CONTENT_BROWSER_DOWNLOAD_SAVE_TYPES_H_ #include <stdint.h> #include <string> #include <unordered_map> #include <utility> #include <vector> #include "base/files/file_path.h" #include "base/types/id_type.h" #include "url/gurl.h" namespace content { class SavePackage; SavePackageId; class SaveItem; SaveItemId; // Map from save_item_id into final file path. FinalNamesMap; // This structure is used to handle and deliver some info // when processing each save item job. struct SaveFileCreateInfo { … }; } // namespace content #endif // CONTENT_BROWSER_DOWNLOAD_SAVE_TYPES_H_