| Index: components/history/core/browser/history_backend.h
|
| diff --git a/components/history/core/browser/history_backend.h b/components/history/core/browser/history_backend.h
|
| index 4e6c3e3e28980934961d71667baf74d9645cf152..f32fcbfd6d6fb3a6f6a041295292e004cbc7d61a 100644
|
| --- a/components/history/core/browser/history_backend.h
|
| +++ b/components/history/core/browser/history_backend.h
|
| @@ -5,6 +5,9 @@
|
| #ifndef COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_BACKEND_H_
|
| #define COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_BACKEND_H_
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <set>
|
| #include <string>
|
| #include <utility>
|
| @@ -14,12 +17,14 @@
|
| #include "base/containers/mru_cache.h"
|
| #include "base/files/file_path.h"
|
| #include "base/gtest_prod_util.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/memory_pressure_listener.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/observer_list.h"
|
| #include "base/single_thread_task_runner.h"
|
| #include "base/supports_user_data.h"
|
| #include "base/task/cancelable_task_tracker.h"
|
| +#include "build/build_config.h"
|
| #include "components/favicon_base/favicon_usage_data.h"
|
| #include "components/history/core/browser/expire_history_backend.h"
|
| #include "components/history/core/browser/history_backend_notifier.h"
|
| @@ -339,11 +344,11 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>,
|
|
|
| // Downloads -----------------------------------------------------------------
|
|
|
| - uint32 GetNextDownloadId();
|
| + uint32_t GetNextDownloadId();
|
| void QueryDownloads(std::vector<DownloadRow>* rows);
|
| void UpdateDownload(const DownloadRow& data);
|
| bool CreateDownload(const DownloadRow& history_info);
|
| - void RemoveDownloads(const std::set<uint32>& ids);
|
| + void RemoveDownloads(const std::set<uint32_t>& ids);
|
|
|
| // Keyword search terms ------------------------------------------------------
|
|
|
|
|