// 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/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" // static scoped_refptr ShortcutsBackendFactory::GetForProfile( Profile* profile) { return static_cast( GetInstance()->GetServiceForBrowserContext(profile, true).get()); } // static scoped_refptr ShortcutsBackendFactory::GetForProfileIfExists( Profile* profile) { return static_cast( GetInstance()->GetServiceForBrowserContext(profile, false).get()); } // static ShortcutsBackendFactory* ShortcutsBackendFactory::GetInstance() { return Singleton::get(); } // static scoped_refptr ShortcutsBackendFactory::BuildProfileForTesting( content::BrowserContext* profile) { scoped_refptr backend( new ShortcutsBackend(static_cast(profile), false)); if (backend->Init()) return backend; return NULL; } // static scoped_refptr ShortcutsBackendFactory::BuildProfileNoDatabaseForTesting( content::BrowserContext* profile) { scoped_refptr backend( new ShortcutsBackend(static_cast(profile), true)); if (backend->Init()) return backend; return NULL; } ShortcutsBackendFactory::ShortcutsBackendFactory() : RefcountedBrowserContextKeyedServiceFactory( "ShortcutsBackend", BrowserContextDependencyManager::GetInstance()) { } ShortcutsBackendFactory::~ShortcutsBackendFactory() {} scoped_refptr ShortcutsBackendFactory::BuildServiceInstanceFor( content::BrowserContext* profile) const { scoped_refptr backend( new ShortcutsBackend(static_cast(profile), false)); if (backend->Init()) return backend; return NULL; } bool ShortcutsBackendFactory::ServiceIsNULLWhileTesting() const { return true; }