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

Unified Diff: chrome/browser/lifetime/browser_close_manager.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/lifetime/browser_close_manager.cc
diff --git a/chrome/browser/lifetime/browser_close_manager.cc b/chrome/browser/lifetime/browser_close_manager.cc
index d8a943c1ab55a4172d9b0c66e9a8de2909183c1c..443c1c78399b442cc46efda9543277577ad01dc1 100644
--- a/chrome/browser/lifetime/browser_close_manager.cc
+++ b/chrome/browser/lifetime/browser_close_manager.cc
@@ -12,8 +12,8 @@
#include "chrome/browser/background/background_mode_manager.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/browser_shutdown.h"
-#include "chrome/browser/download/download_service.h"
-#include "chrome/browser/download/download_service_factory.h"
+#include "chrome/browser/download/download_core_service.h"
+#include "chrome/browser/download/download_core_service_factory.h"
#include "chrome/browser/lifetime/application_lifetime.h"
#include "chrome/browser/notifications/notification_ui_manager.h"
#include "chrome/browser/profiles/profile_manager.h"
@@ -31,9 +31,9 @@ namespace {
// Navigates a browser window for |profile|, creating one if necessary, to the
// downloads page if there are downloads in progress for |profile|.
void ShowInProgressDownloads(Profile* profile) {
- DownloadService* download_service =
- DownloadServiceFactory::GetForBrowserContext(profile);
- if (download_service->NonMaliciousDownloadCount() > 0) {
+ DownloadCoreService* download_core_service =
+ DownloadCoreServiceFactory::GetForBrowserContext(profile);
+ if (download_core_service->NonMaliciousDownloadCount() > 0) {
chrome::ScopedTabbedBrowserDisplayer displayer(profile);
chrome::ShowDownloads(displayer.browser());
}
@@ -101,7 +101,8 @@ void BrowserCloseManager::CheckForDownloadsInProgress() {
return;
#endif
- int download_count = DownloadService::NonMaliciousDownloadCountAllProfiles();
+ int download_count =
+ DownloadCoreService::NonMaliciousDownloadCountAllProfiles();
if (download_count == 0) {
CloseBrowsers();
return;

Powered by Google App Engine
This is Rietveld 408576698