// Copyright 2018 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_DATABASE_DOWNLOAD_INFO_H_ #define COMPONENTS_DOWNLOAD_DATABASE_DOWNLOAD_INFO_H_ #include <optional> #include <string> #include "components/download/database/in_progress/in_progress_info.h" #include "components/download/database/in_progress/ukm_info.h" namespace download { // Contains needed information to reconstruct a download item. struct DownloadInfo { … }; } // namespace download #endif // COMPONENTS_DOWNLOAD_DATABASE_DOWNLOAD_INFO_H_