Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(685)

Unified Diff: chrome/browser/download/download_service.cc

Issue 2853363002: Rename the DownloadService to DownloadCoreService (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/download/download_service.cc
diff --git a/chrome/browser/download/download_service.cc b/chrome/browser/download/download_service.cc
deleted file mode 100644
index 1ca08a8746c37a5d752c6048cf1b3d48fc2dd28a..0000000000000000000000000000000000000000
--- a/chrome/browser/download/download_service.cc
+++ /dev/null
@@ -1,47 +0,0 @@
-// Copyright 2015 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.
-
-#include "chrome/browser/download/download_service.h"
-
-#include "chrome/browser/browser_process.h"
-#include "chrome/browser/download/download_service_factory.h"
-#include "chrome/browser/profiles/profile.h"
-#include "chrome/browser/profiles/profile_manager.h"
-
-DownloadService::DownloadService() {
-}
-
-DownloadService::~DownloadService() {}
-
-// static
-int DownloadService::NonMaliciousDownloadCountAllProfiles() {
- std::vector<Profile*> profiles(
- g_browser_process->profile_manager()->GetLoadedProfiles());
-
- int count = 0;
- for (std::vector<Profile*>::iterator it = profiles.begin();
- it < profiles.end(); ++it) {
- count += DownloadServiceFactory::GetForBrowserContext(*it)->
- NonMaliciousDownloadCount();
- if ((*it)->HasOffTheRecordProfile())
- count += DownloadServiceFactory::GetForBrowserContext(
- (*it)->GetOffTheRecordProfile())->NonMaliciousDownloadCount();
- }
-
- return count;
-}
-
-// static
-void DownloadService::CancelAllDownloads() {
- std::vector<Profile*> profiles(
- g_browser_process->profile_manager()->GetLoadedProfiles());
- for (std::vector<Profile*>::iterator it = profiles.begin();
- it < profiles.end();
- ++it) {
- DownloadService* service =
- DownloadServiceFactory::GetForBrowserContext(*it);
- service->CancelDownloads();
- }
-}
-

Powered by Google App Engine
This is Rietveld 408576698