This source file includes following definitions.
- GetForProfile
- GetInstance
- BuildServiceInstanceFor
- ServiceIsCreatedWithBrowserContext
- ServiceIsNULLWhileTesting
#include "chrome/browser/apps/shortcut_manager_factory.h"
#include "chrome/browser/apps/shortcut_manager.h"
#include "chrome/browser/profiles/profile.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
AppShortcutManager* AppShortcutManagerFactory::GetForProfile(Profile* profile) {
return static_cast<AppShortcutManager*>(
GetInstance()->GetServiceForBrowserContext(profile,
false ));
}
AppShortcutManagerFactory* AppShortcutManagerFactory::GetInstance() {
return Singleton<AppShortcutManagerFactory>::get();
}
AppShortcutManagerFactory::AppShortcutManagerFactory()
: BrowserContextKeyedServiceFactory(
"AppShortcutManager",
BrowserContextDependencyManager::GetInstance()) {
}
AppShortcutManagerFactory::~AppShortcutManagerFactory() {
}
KeyedService* AppShortcutManagerFactory::BuildServiceInstanceFor(
content::BrowserContext* profile) const {
return new AppShortcutManager(static_cast<Profile*>(profile));
}
bool AppShortcutManagerFactory::ServiceIsCreatedWithBrowserContext() const {
return true;
}
bool AppShortcutManagerFactory::ServiceIsNULLWhileTesting() const {
return true;
}