This source file includes following definitions.
- GetForProfile
- GetForProfileIfExists
- GetInstance
- BuildProfileForTesting
- BuildProfileNoDatabaseForTesting
- BuildServiceInstanceFor
- ServiceIsNULLWhileTesting
#include "chrome/browser/autocomplete/shortcuts_backend_factory.h"
#include "base/prefs/pref_service.h"
#include "chrome/browser/autocomplete/shortcuts_backend.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/pref_names.h"
#include "components/keyed_service/content/browser_context_dependency_manager.h"
scoped_refptr<ShortcutsBackend> ShortcutsBackendFactory::GetForProfile(
Profile* profile) {
return static_cast<ShortcutsBackend*>(
GetInstance()->GetServiceForBrowserContext(profile, true).get());
}
scoped_refptr<ShortcutsBackend> ShortcutsBackendFactory::GetForProfileIfExists(
Profile* profile) {
return static_cast<ShortcutsBackend*>(
GetInstance()->GetServiceForBrowserContext(profile, false).get());
}
ShortcutsBackendFactory* ShortcutsBackendFactory::GetInstance() {
return Singleton<ShortcutsBackendFactory>::get();
}
scoped_refptr<RefcountedBrowserContextKeyedService>
ShortcutsBackendFactory::BuildProfileForTesting(
content::BrowserContext* profile) {
scoped_refptr<ShortcutsBackend> backend(
new ShortcutsBackend(static_cast<Profile*>(profile), false));
if (backend->Init())
return backend;
return NULL;
}
scoped_refptr<RefcountedBrowserContextKeyedService>
ShortcutsBackendFactory::BuildProfileNoDatabaseForTesting(
content::BrowserContext* profile) {
scoped_refptr<ShortcutsBackend> backend(
new ShortcutsBackend(static_cast<Profile*>(profile), true));
if (backend->Init())
return backend;
return NULL;
}
ShortcutsBackendFactory::ShortcutsBackendFactory()
: RefcountedBrowserContextKeyedServiceFactory(
"ShortcutsBackend",
BrowserContextDependencyManager::GetInstance()) {
}
ShortcutsBackendFactory::~ShortcutsBackendFactory() {}
scoped_refptr<RefcountedBrowserContextKeyedService>
ShortcutsBackendFactory::BuildServiceInstanceFor(
content::BrowserContext* profile) const {
scoped_refptr<ShortcutsBackend> backend(
new ShortcutsBackend(static_cast<Profile*>(profile), false));
if (backend->Init())
return backend;
return NULL;
}
bool ShortcutsBackendFactory::ServiceIsNULLWhileTesting() const {
return true;
}