1 // Copyright 2014 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.
5 #include "chrome/browser/bookmarks/chrome_bookmark_client_factory.h"
7 #include "base/memory/singleton.h"
8 #include "chrome/browser/bookmarks/chrome_bookmark_client.h"
9 #include "chrome/browser/profiles/incognito_helpers.h"
10 #include "chrome/browser/profiles/profile.h"
11 #include "components/keyed_service/content/browser_context_dependency_manager.h"
14 ChromeBookmarkClient
* ChromeBookmarkClientFactory::GetForProfile(
16 return static_cast<ChromeBookmarkClient
*>(
17 GetInstance()->GetServiceForBrowserContext(profile
, true));
21 ChromeBookmarkClientFactory
* ChromeBookmarkClientFactory::GetInstance() {
22 return Singleton
<ChromeBookmarkClientFactory
>::get();
25 ChromeBookmarkClientFactory::ChromeBookmarkClientFactory()
26 : BrowserContextKeyedServiceFactory(
27 "ChromeBookmarkClient",
28 BrowserContextDependencyManager::GetInstance()) {
31 ChromeBookmarkClientFactory::~ChromeBookmarkClientFactory() {
34 KeyedService
* ChromeBookmarkClientFactory::BuildServiceInstanceFor(
35 content::BrowserContext
* context
) const {
36 return new ChromeBookmarkClient(static_cast<Profile
*>(context
));
39 content::BrowserContext
* ChromeBookmarkClientFactory::GetBrowserContextToUse(
40 content::BrowserContext
* context
) const {
41 return chrome::GetBrowserContextRedirectedInIncognito(context
);
44 bool ChromeBookmarkClientFactory::ServiceIsNULLWhileTesting() const {