OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DownloadService
(Results
1 - 21
of
21
) sorted by null
/external/chromium_org/chrome/browser/download/
download_service_factory.cc
13
DownloadService
* DownloadServiceFactory::GetForBrowserContext(
15
return static_cast<
DownloadService
*>(
26
"
DownloadService
",
36
DownloadService
* service =
37
new
DownloadService
(static_cast<Profile*>(profile));
download_service_factory.h
12
class
DownloadService
;
16
// the associated
DownloadService
.
19
// Returns the
DownloadService
for |context|, creating if not yet created.
20
static
DownloadService
* GetForBrowserContext(
download_service.h
28
class
DownloadService
: public KeyedService {
30
explicit
DownloadService
(Profile* profile);
31
virtual ~
DownloadService
();
109
DISALLOW_COPY_AND_ASSIGN(
DownloadService
);
download_service.cc
29
DownloadService
::
DownloadService
(Profile* profile)
34
DownloadService
::~
DownloadService
() {}
36
ChromeDownloadManagerDelegate*
DownloadService
::GetDownloadManagerDelegate() {
81
DownloadHistory*
DownloadService
::GetDownloadHistory() {
89
bool
DownloadService
::HasCreatedDownloadManager() {
93
int
DownloadService
::NonMaliciousDownloadCount() const {
100
void
DownloadService
::CancelDownloads() {
117
int
DownloadService
::NonMaliciousDownloadCountAllProfiles()
[
all
...]
download_ui_controller_unittest.cc
57
// A
DownloadService
that returns a custom DownloadHistory.
58
class TestDownloadService : public
DownloadService
{
73
:
DownloadService
(profile) {
download_shelf_unittest.cc
32
return new
DownloadService
(Profile::FromBrowserContext(context));
download_item_model.cc
562
DownloadService
* download_service =
690
DownloadService
* download_service =
save_page_browsertest.cc
72
DownloadService
* service = DownloadServiceFactory::GetForBrowserContext(
download_browsertest.cc
385
DownloadService
* service = DownloadServiceFactory::GetForBrowserContext(
[
all
...]
/external/chromium_org/chrome/browser/lifetime/
browser_close_manager.cc
74
int download_count =
DownloadService
::NonMaliciousDownloadCountAllProfiles();
111
DownloadService
* download_service =
application_lifetime.cc
67
if (
DownloadService
::NonMaliciousDownloadCountAllProfiles() > 0)
browser_close_manager_browsertest.cc
802
EXPECT_EQ(1,
DownloadService
::NonMaliciousDownloadCountAllProfiles());
804
EXPECT_EQ(0,
DownloadService
::NonMaliciousDownloadCountAllProfiles());
[
all
...]
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
AbstractDownloadProviderFunctionalTest.java
50
ServiceTestCase<
DownloadService
> {
112
* Direct
DownloadService
to our test instance of DownloadProvider.
132
* Record when DownloadProvider starts
DownloadService
.
136
if (service.getComponent().getClassName().equals(
DownloadService
.class.getName())) {
145
super(
DownloadService
.class);
/external/chromium_org/chrome/browser/ui/
browser_close_browsertest.cc
153
DownloadService
* download_service =
162
DownloadService
* incognito_download_service =
280
DownloadService
::NonMaliciousDownloadCountAllProfiles();
browser.cc
525
DownloadService
::CancelAllDownloads();
733
DownloadService
::NonMaliciousDownloadCountAllProfiles();
764
DownloadService
* download_service =
[
all
...]
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadReceiver.java
253
context.startService(new Intent(context,
DownloadService
.class));
DownloadService.java
77
public class
DownloadService
extends Service {
DownloadProvider.java
461
// start the
DownloadService
class. don't wait for the 1st download to be issued.
462
// saves us by getting some initialization code in
DownloadService
out of the way.
464
context.startService(new Intent(context,
DownloadService
.class));
682
context.startService(new Intent(context,
DownloadService
.class));
[
all
...]
/external/chromium_org/chrome/browser/chromeos/drive/
download_handler.cc
103
DownloadService
* download_service =
/external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api.cc
[
all
...]
/external/chromium_org/chrome/browser/profiles/
profile_manager.cc
631
DownloadService
* service =
[
all
...]
Completed in 496 milliseconds