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

Side by Side Diff: chrome/browser/download/download_core_service_factory.h

Issue 2853363002: Rename the DownloadService to DownloadCoreService (Closed)
Patch Set: Created 3 years, 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_CORE_SERVICE_FACTORY_H_
6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_CORE_SERVICE_FACTORY_H_
7
8 #include "base/compiler_specific.h"
9 #include "base/memory/singleton.h"
10 #include "components/keyed_service/content/browser_context_keyed_service_factory .h"
11
12 class DownloadCoreService;
13
14 // Singleton that owns all DownloadCoreServices and associates them with
15 // Profiles. Listens for the Profile's destruction notification and cleans up
16 // the associated DownloadCoreService.
17 class DownloadCoreServiceFactory : public BrowserContextKeyedServiceFactory {
18 public:
19 // Returns the DownloadCoreService for |context|, creating if not yet created.
20 static DownloadCoreService* GetForBrowserContext(
21 content::BrowserContext* context);
22
23 static DownloadCoreServiceFactory* GetInstance();
24
25 protected:
26 // BrowserContextKeyedServiceFactory:
27 KeyedService* BuildServiceInstanceFor(
28 content::BrowserContext* profile) const override;
29 content::BrowserContext* GetBrowserContextToUse(
30 content::BrowserContext* context) const override;
31
32 private:
33 friend struct base::DefaultSingletonTraits<DownloadCoreServiceFactory>;
34
35 DownloadCoreServiceFactory();
36 ~DownloadCoreServiceFactory() override;
37 };
38
39 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_CORE_SERVICE_FACTORY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698