blob: 9c1241057d60b86e940e10f1431a269eb30784cb [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 base::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;
}