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

Unified Diff: trunk/src/chrome/browser/favicon/chrome_favicon_client_factory.cc

Issue 334613004: Revert 276642 "Turn FaviconClient into a Keyed service." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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
Index: trunk/src/chrome/browser/favicon/chrome_favicon_client_factory.cc
===================================================================
--- trunk/src/chrome/browser/favicon/chrome_favicon_client_factory.cc (revision 276741)
+++ trunk/src/chrome/browser/favicon/chrome_favicon_client_factory.cc (working copy)
@@ -1,44 +0,0 @@
-// 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.
-
-#include "chrome/browser/favicon/chrome_favicon_client_factory.h"
-
-#include "chrome/browser/profiles/profile.h"
-#include "components/keyed_service/content/browser_context_dependency_manager.h"
-
-ChromeFaviconClientFactory::ChromeFaviconClientFactory()
- : BrowserContextKeyedServiceFactory(
- "ChromeFaviconClient",
- BrowserContextDependencyManager::GetInstance()) {
-}
-
-ChromeFaviconClientFactory::~ChromeFaviconClientFactory() {
-}
-
-// static
-FaviconClient* ChromeFaviconClientFactory::GetForProfile(Profile* profile) {
- if (!profile->IsOffTheRecord()) {
- return static_cast<FaviconClient*>(
- GetInstance()->GetServiceForBrowserContext(profile, true));
- }
- // Profile must be OffTheRecord in this case.
- return static_cast<FaviconClient*>(GetInstance()->GetServiceForBrowserContext(
- profile->GetOriginalProfile(), true));
-}
-
-// static
-ChromeFaviconClientFactory* ChromeFaviconClientFactory::GetInstance() {
- return Singleton<ChromeFaviconClientFactory>::get();
-}
-
-KeyedService* ChromeFaviconClientFactory::BuildServiceInstanceFor(
- content::BrowserContext* context) const {
- ChromeFaviconClient* client =
- new ChromeFaviconClient(Profile::FromBrowserContext(context));
- return client;
-}
-
-bool ChromeFaviconClientFactory::ServiceIsNULLWhileTesting() const {
- return true;
-}

Powered by Google App Engine
This is Rietveld 408576698