summaryrefslogtreecommitdiffstats
path: root/chrome/browser/download
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/download')
-rw-r--r--chrome/browser/download/download_service_factory.cc2
-rw-r--r--chrome/browser/download/download_service_factory.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/download/download_service_factory.cc b/chrome/browser/download/download_service_factory.cc
index fb0b919..bde97b8 100644
--- a/chrome/browser/download/download_service_factory.cc
+++ b/chrome/browser/download/download_service_factory.cc
@@ -19,7 +19,7 @@ DownloadService* DownloadServiceFactory::GetForBrowserContext(
// static
DownloadServiceFactory* DownloadServiceFactory::GetInstance() {
- return Singleton<DownloadServiceFactory>::get();
+ return base::Singleton<DownloadServiceFactory>::get();
}
DownloadServiceFactory::DownloadServiceFactory()
diff --git a/chrome/browser/download/download_service_factory.h b/chrome/browser/download/download_service_factory.h
index 8958fe1..b07e107 100644
--- a/chrome/browser/download/download_service_factory.h
+++ b/chrome/browser/download/download_service_factory.h
@@ -30,7 +30,7 @@ class DownloadServiceFactory : public BrowserContextKeyedServiceFactory {
content::BrowserContext* context) const override;
private:
- friend struct DefaultSingletonTraits<DownloadServiceFactory>;
+ friend struct base::DefaultSingletonTraits<DownloadServiceFactory>;
DownloadServiceFactory();
~DownloadServiceFactory() override;