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

Unified Diff: chrome/browser/favicon/chrome_favicon_client_factory.h

Issue 301613004: Turn FaviconClient into a Keyed service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: touching wood Created 6 years, 6 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
« no previous file with comments | « no previous file | chrome/browser/favicon/chrome_favicon_client_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/favicon/chrome_favicon_client_factory.h
diff --git a/chrome/browser/favicon/chrome_favicon_client_factory.h b/chrome/browser/favicon/chrome_favicon_client_factory.h
new file mode 100644
index 0000000000000000000000000000000000000000..7e207177847b99a348d38e5175cdb048297c6fc8
--- /dev/null
+++ b/chrome/browser/favicon/chrome_favicon_client_factory.h
@@ -0,0 +1,37 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_FAVICON_CHROME_FAVICON_CLIENT_FACTORY_H_
+#define CHROME_BROWSER_FAVICON_CHROME_FAVICON_CLIENT_FACTORY_H_
+
+#include "base/memory/singleton.h"
+#include "chrome/browser/favicon/chrome_favicon_client.h"
+#include "components/keyed_service/content/browser_context_keyed_service_factory.h"
+
+class Profile;
+
+// Singleton that owns all ChromeFaviconClients and associates them with
+// Profiles.
+class ChromeFaviconClientFactory : public BrowserContextKeyedServiceFactory {
+ public:
+ // Returns the instance of FaviconClient associated with this profile
+ // (creating one if none exists).
+ static FaviconClient* GetForProfile(Profile* profile);
+
+ // Returns an instance of the factory singleton.
+ static ChromeFaviconClientFactory* GetInstance();
+
+ private:
+ friend struct DefaultSingletonTraits<ChromeFaviconClientFactory>;
+
+ ChromeFaviconClientFactory();
+ virtual ~ChromeFaviconClientFactory();
+
+ // BrowserContextKeyedServiceFactory:
+ virtual KeyedService* BuildServiceInstanceFor(
+ content::BrowserContext* profile) const OVERRIDE;
+ virtual bool ServiceIsNULLWhileTesting() const OVERRIDE;
+};
+
+#endif // CHROME_BROWSER_FAVICON_CHROME_FAVICON_CLIENT_FACTORY_H_
« no previous file with comments | « no previous file | chrome/browser/favicon/chrome_favicon_client_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698