blob: d7f9188198fa77e0327d7dc5ea69c632d2cb00a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_HISTORY_H_
#define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_HISTORY_H_
#pragma once
#include "base/basictypes.h"
#include "chrome/browser/cancelable_request.h"
#include "chrome/browser/history/history.h"
class DownloadItem;
class Profile;
namespace base {
class Time;
}
// Interacts with the HistoryService on behalf of the download subsystem.
class DownloadHistory {
public:
// A fake download table ID which represents a download that has started,
// but is not yet in the table.
static const int kUninitializedHandle;
explicit DownloadHistory(Profile* profile);
~DownloadHistory();
// Retrieves DownloadCreateInfos saved in the history.
void Load(HistoryService::DownloadQueryCallback* callback);
// Adds a new entry for a download to the history database.
void AddEntry(const DownloadCreateInfo& info,
DownloadItem* download_item,
HistoryService::DownloadCreateCallback* callback);
// Updates the history entry for |download_item|.
void UpdateEntry(DownloadItem* download_item);
// Updates the download path for |download_item| to |new_path|.
void UpdateDownloadPath(DownloadItem* download_item,
const FilePath& new_path);
// Removes |download_item| from the history database.
void RemoveEntry(DownloadItem* download_item);
// Removes download-related history entries in the given time range.
void RemoveEntriesBetween(const base::Time remove_begin,
const base::Time remove_end);
// Returns a new unique database handle which will not collide with real ones.
int64 GetNextFakeDbHandle();
private:
Profile* profile_;
// In case we don't have a valid db_handle, we use |fake_db_handle_| instead.
// This is useful for incognito mode or when the history database is offline.
// Downloads are expected to have unique handles, so we decrement the next
// fake handle value on every use.
int64 next_fake_db_handle_;
CancelableRequestConsumer history_consumer_;
DISALLOW_COPY_AND_ASSIGN(DownloadHistory);
};
#endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_HISTORY_H_
|