// 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_ITEM_H_ #define CONTENT_BROWSER_DOWNLOAD_SAVE_ITEM_H_ #include <stdint.h> #include "base/files/file_path.h" #include "base/memory/raw_ptr.h" #include "content/browser/download/save_types.h" #include "content/public/common/referrer.h" #include "net/base/isolation_info.h" #include "services/network/public/cpp/request_mode.h" #include "url/gurl.h" namespace content { class SavePackage; // One SaveItem per save file. This is the model class that stores all the // state for one save file. class SaveItem { … }; } // namespace content #endif // CONTENT_BROWSER_DOWNLOAD_SAVE_ITEM_H_