// Copyright 2017 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_HISTORY_CORE_BROWSER_DOWNLOAD_SLICE_INFO_H_ #define COMPONENTS_HISTORY_CORE_BROWSER_DOWNLOAD_SLICE_INFO_H_ #include <stdint.h> #include "components/history/core/browser/download_types.h" namespace history { // Contains the information for each slice of data that is written to the // download target file. A download file can have multiple slices and cach // slice will have a different offset. struct DownloadSliceInfo { … }; } // namespace history #endif // COMPONENTS_HISTORY_CORE_BROWSER_DOWNLOAD_SLICE_INFO_H_