// 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 COMPONENTS_HISTORY_CORE_BROWSER_DOWNLOAD_DATABASE_H_ #define COMPONENTS_HISTORY_CORE_BROWSER_DOWNLOAD_DATABASE_H_ #include <stddef.h> #include <stdint.h> #include <map> #include <string> #include <vector> #include "base/gtest_prod_util.h" #include "base/threading/platform_thread.h" #include "components/history/core/browser/download_types.h" namespace sql { class Database; } namespace history { struct DownloadSliceInfo; struct DownloadRow; // Maintains a table of downloads. class DownloadDatabase { … }; } // namespace history #endif // COMPONENTS_HISTORY_CORE_BROWSER_DOWNLOAD_DATABASE_H_