summaryrefslogtreecommitdiffstats
path: root/chrome/browser/history/download_database.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/history/download_database.cc')
-rw-r--r--chrome/browser/history/download_database.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/browser/history/download_database.cc b/chrome/browser/history/download_database.cc
index 5c34ef4..996e1199 100644
--- a/chrome/browser/history/download_database.cc
+++ b/chrome/browser/history/download_database.cc
@@ -55,7 +55,8 @@ bool DownloadDatabase::DropDownloadTable() {
SQLITE_OK;
}
-void DownloadDatabase::QueryDownloads(std::vector<DownloadCreateInfo>* results) {
+void DownloadDatabase::QueryDownloads(
+ std::vector<DownloadCreateInfo>* results) {
results->clear();
SQLITE_UNIQUE_STATEMENT(statement, GetStatementCache(),
@@ -156,7 +157,9 @@ void DownloadDatabase::RemoveDownloadsBetween(Time delete_begin,
time_t start_time = delete_begin.ToTimeT();
time_t end_time = delete_end.ToTimeT();
statement->bind_int64(0, start_time);
- statement->bind_int64(1, end_time ? end_time : std::numeric_limits<int64>::max());
+ statement->bind_int64(
+ 1,
+ end_time ? end_time : std::numeric_limits<int64>::max());
statement->bind_int(2, DownloadItem::COMPLETE);
statement->bind_int(3, DownloadItem::CANCELLED);
statement->step();