OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:downloaddatabase
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/chrome/browser/history/
download_database.cc
103
const int
DownloadDatabase
::kStateInvalid = -1;
104
const int
DownloadDatabase
::kStateInProgress = 0;
105
const int
DownloadDatabase
::kStateComplete = 1;
106
const int
DownloadDatabase
::kStateCancelled = 2;
107
const int
DownloadDatabase
::kStateBug140687 = 3;
108
const int
DownloadDatabase
::kStateInterrupted = 4;
110
const int
DownloadDatabase
::kDangerTypeInvalid = -1;
111
const int
DownloadDatabase
::kDangerTypeNotDangerous = 0;
112
const int
DownloadDatabase
::kDangerTypeDangerousFile = 1;
113
const int
DownloadDatabase
::kDangerTypeDangerousUrl = 2
[
all
...]
download_database.h
25
class
DownloadDatabase
{
28
DownloadDatabase
();
29
virtual ~
DownloadDatabase
();
119
// and
DownloadDatabase
constants.
135
DISALLOW_COPY_AND_ASSIGN(
DownloadDatabase
);
download_row.h
21
//
DownloadDatabase
through the HistoryService.
history_database.h
41
class HistoryDatabase : public
DownloadDatabase
,
history_unittest.cc
746
EXPECT_EQ(
DownloadDatabase
::kStateInProgress, statement1.ColumnInt(0));
776
EXPECT_EQ(
DownloadDatabase
::kStateInterrupted, statement1.ColumnInt(0));
[
all
...]
history_backend.cc
60
DownloadDatabase
(stores a list of downloads)
66
DownloadDatabase
(stores a list of downloads)
[
all
...]
/external/chromium/chrome/browser/history/
download_database.cc
57
DownloadDatabase
::
DownloadDatabase
() {
60
DownloadDatabase
::~
DownloadDatabase
() {
63
bool
DownloadDatabase
::InitDownloadTable() {
79
bool
DownloadDatabase
::DropDownloadTable() {
83
void
DownloadDatabase
::QueryDownloads(
109
bool
DownloadDatabase
::UpdateDownload(int64 received_bytes,
125
bool
DownloadDatabase
::UpdateDownloadPath(const FilePath& path,
138
bool
DownloadDatabase
::CleanUpInProgressEntries()
[
all
...]
download_database.h
21
class
DownloadDatabase
{
24
DownloadDatabase
();
25
virtual ~
DownloadDatabase
();
66
DISALLOW_COPY_AND_ASSIGN(
DownloadDatabase
);
history_database.h
34
class HistoryDatabase : public
DownloadDatabase
,
history_backend.cc
45
DownloadDatabase
(stores a list of downloads)
51
DownloadDatabase
(stores a list of downloads)
[
all
...]
/external/chromium_org/chrome/browser/download/
download_history.h
25
//
DownloadDatabase
up to date.
Completed in 331 milliseconds