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

Unified Diff: chrome/browser/extensions/api/downloads/downloads_api.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/extensions/api/downloads/downloads_api.cc
diff --git a/chrome/browser/extensions/api/downloads/downloads_api.cc b/chrome/browser/extensions/api/downloads/downloads_api.cc
index b1d8dd3b57a9747e316b83a4cf7e477400a08e58..9e95f90f0be5d211a3b0b2c20f8532f45fd6f1a4 100644
--- a/chrome/browser/extensions/api/downloads/downloads_api.cc
+++ b/chrome/browser/extensions/api/downloads/downloads_api.cc
@@ -35,12 +35,12 @@
#include "base/values.h"
#include "build/build_config.h"
#include "chrome/browser/browser_process.h"
+#include "chrome/browser/download/download_core_service.h"
+#include "chrome/browser/download/download_core_service_factory.h"
#include "chrome/browser/download/download_danger_prompt.h"
#include "chrome/browser/download/download_file_icon_extractor.h"
#include "chrome/browser/download/download_prefs.h"
#include "chrome/browser/download/download_query.h"
-#include "chrome/browser/download/download_service.h"
-#include "chrome/browser/download/download_service_factory.h"
#include "chrome/browser/download/download_shelf.h"
#include "chrome/browser/download/download_stats.h"
#include "chrome/browser/download/drag_download_item.h"
@@ -1091,13 +1091,15 @@ ExtensionFunction::ResponseAction DownloadsSearchFunction::Run() {
GetManagers(browser_context(), include_incognito(), &manager,
&incognito_manager);
ExtensionDownloadsEventRouter* router =
- DownloadServiceFactory::GetForBrowserContext(
- manager->GetBrowserContext())->GetExtensionEventRouter();
+ DownloadCoreServiceFactory::GetForBrowserContext(
+ manager->GetBrowserContext())
+ ->GetExtensionEventRouter();
router->CheckForHistoryFilesRemoval();
if (incognito_manager) {
ExtensionDownloadsEventRouter* incognito_router =
- DownloadServiceFactory::GetForBrowserContext(
- incognito_manager->GetBrowserContext())->GetExtensionEventRouter();
+ DownloadCoreServiceFactory::GetForBrowserContext(
+ incognito_manager->GetBrowserContext())
+ ->GetExtensionEventRouter();
incognito_router->CheckForHistoryFilesRemoval();
}
DownloadQuery::DownloadVector results;
@@ -1434,16 +1436,16 @@ ExtensionFunction::ResponseAction DownloadsSetShelfEnabledFunction::Run() {
DownloadManager* incognito_manager = NULL;
GetManagers(browser_context(), include_incognito(), &manager,
&incognito_manager);
- DownloadService* service = NULL;
- DownloadService* incognito_service = NULL;
+ DownloadCoreService* service = NULL;
+ DownloadCoreService* incognito_service = NULL;
if (manager) {
- service = DownloadServiceFactory::GetForBrowserContext(
+ service = DownloadCoreServiceFactory::GetForBrowserContext(
manager->GetBrowserContext());
service->GetExtensionEventRouter()->SetShelfEnabled(extension(),
params->enabled);
}
if (incognito_manager) {
- incognito_service = DownloadServiceFactory::GetForBrowserContext(
+ incognito_service = DownloadCoreServiceFactory::GetForBrowserContext(
incognito_manager->GetBrowserContext());
incognito_service->GetExtensionEventRouter()->SetShelfEnabled(
extension(), params->enabled);
@@ -1454,8 +1456,8 @@ ExtensionFunction::ResponseAction DownloadsSetShelfEnabledFunction::Run() {
for (BrowserList::const_iterator iter = browsers->begin();
iter != browsers->end(); ++iter) {
const Browser* browser = *iter;
- DownloadService* current_service =
- DownloadServiceFactory::GetForBrowserContext(browser->profile());
+ DownloadCoreService* current_service =
+ DownloadCoreServiceFactory::GetForBrowserContext(browser->profile());
if (((current_service == service) ||
(current_service == incognito_service)) &&
browser->window()->IsDownloadShelfVisible() &&

Powered by Google App Engine
This is Rietveld 408576698