blob: 24ecf5f8ec14741bdcdb2c1fc400ffa9529f48e9 [file] [log] [blame]
// Copyright (c) 2012 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/ui/tabs/pinned_tab_service_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/ui/tabs/pinned_tab_service.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
// static
PinnedTabService* PinnedTabServiceFactory::GetForProfile(
Profile* profile) {
return static_cast<PinnedTabService*>(
GetInstance()->GetServiceForBrowserContext(profile, true));
}
PinnedTabServiceFactory* PinnedTabServiceFactory::GetInstance() {
return Singleton<PinnedTabServiceFactory>::get();
}
PinnedTabServiceFactory::PinnedTabServiceFactory()
: BrowserContextKeyedServiceFactory(
"PinnedTabService",
BrowserContextDependencyManager::GetInstance()) {
}
PinnedTabServiceFactory::~PinnedTabServiceFactory() {
}
KeyedService* PinnedTabServiceFactory::BuildServiceInstanceFor(
content::BrowserContext* profile) const {
return new PinnedTabService(static_cast<Profile*>(profile));
}
bool PinnedTabServiceFactory::ServiceIsCreatedWithBrowserContext() const {
return true;
}
bool PinnedTabServiceFactory::ServiceIsNULLWhileTesting() const {
return true;
}