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

Unified Diff: chrome/browser/download/download_core_service_impl.h

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_core_service_impl.h
diff --git a/chrome/browser/download/download_service_impl.h b/chrome/browser/download/download_core_service_impl.h
similarity index 85%
rename from chrome/browser/download/download_service_impl.h
rename to chrome/browser/download/download_core_service_impl.h
index 8a15239b6f2ec5bde0422421fc873b8366b3a434..cfe642d95e1b0e7fd79b5240bc332a7fd9e9ccd4 100644
--- a/chrome/browser/download/download_service_impl.h
+++ b/chrome/browser/download/download_core_service_impl.h
@@ -2,14 +2,14 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SERVICE_IMPL_H_
-#define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SERVICE_IMPL_H_
+#ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_CORE_SERVICE_IMPL_H_
+#define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_CORE_SERVICE_IMPL_H_
#include <memory>
#include "base/callback_forward.h"
#include "base/macros.h"
-#include "chrome/browser/download/download_service.h"
+#include "chrome/browser/download/download_core_service.h"
#include "components/keyed_service/core/keyed_service.h"
#include "extensions/features/features.h"
@@ -28,12 +28,12 @@ class ExtensionDownloadsEventRouter;
}
// Owning class for ChromeDownloadManagerDelegate.
-class DownloadServiceImpl : public DownloadService {
+class DownloadCoreServiceImpl : public DownloadCoreService {
public:
- explicit DownloadServiceImpl(Profile* profile);
- ~DownloadServiceImpl() override;
+ explicit DownloadCoreServiceImpl(Profile* profile);
+ ~DownloadCoreServiceImpl() override;
- // DownloadService
+ // DownloadCoreService
ChromeDownloadManagerDelegate* GetDownloadManagerDelegate() override;
DownloadHistory* GetDownloadHistory() override;
#if BUILDFLAG(ENABLE_EXTENSIONS)
@@ -82,7 +82,7 @@ class DownloadServiceImpl : public DownloadService {
extension_event_router_;
#endif
- DISALLOW_COPY_AND_ASSIGN(DownloadServiceImpl);
+ DISALLOW_COPY_AND_ASSIGN(DownloadCoreServiceImpl);
};
-#endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_SERVICE_IMPL_H_
+#endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_CORE_SERVICE_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698