OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DownloadFileManager
(Results
1 - 2
of
2
) sorted by null
/external/chromium/chrome/browser/download/
download_file_manager.h
5
// The
DownloadFileManager
owns a set of DownloadFile objects, each of which
7
// download. The
DownloadFileManager
itself is a singleton object owned by the
10
// The
DownloadFileManager
uses the file_thread for performing file write
32
// The
DownloadFileManager
tracks download requests, mapping from a download
35
// during a download, the
DownloadFileManager
will continue to route data to the
66
class
DownloadFileManager
67
: public base::RefCountedThreadSafe<
DownloadFileManager
> {
69
explicit
DownloadFileManager
(ResourceDispatcherHost* rdh);
77
// Called on UI thread to make
DownloadFileManager
start the download.
95
// download file, as far as the
DownloadFileManager
is concerned -- i
[
all
...]
download_file_manager.cc
50
DownloadFileManager
::
DownloadFileManager
(ResourceDispatcherHost* rdh)
55
DownloadFileManager
::~
DownloadFileManager
() {
59
void
DownloadFileManager
::Shutdown() {
63
NewRunnableMethod(this, &
DownloadFileManager
::OnShutdown));
66
void
DownloadFileManager
::OnShutdown() {
72
void
DownloadFileManager
::CreateDownloadFile(DownloadCreateInfo* info,
99
NewRunnableMethod(this, &
DownloadFileManager
::ResumeDownloadRequest,
110
void
DownloadFileManager
::ResumeDownloadRequest(int child_id, int request_id)
[
all
...]
Completed in 389 milliseconds