| Index: chrome/browser/history/shortcuts_backend_factory.cc
|
| ===================================================================
|
| --- chrome/browser/history/shortcuts_backend_factory.cc (revision 0)
|
| +++ chrome/browser/history/shortcuts_backend_factory.cc (revision 0)
|
| @@ -0,0 +1,71 @@
|
| +// 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/history/shortcuts_backend_factory.h"
|
| +
|
| +#include "chrome/browser/history/shortcuts_backend.h"
|
| +#include "chrome/browser/prefs/pref_service.h"
|
| +#include "chrome/browser/profiles/profile_dependency_manager.h"
|
| +#include "chrome/common/pref_names.h"
|
| +
|
| +using history::ShortcutsBackend;
|
| +
|
| +// static
|
| +scoped_refptr<ShortcutsBackend> ShortcutsBackendFactory::GetForProfile(
|
| + Profile* profile) {
|
| + return static_cast<ShortcutsBackend*>(
|
| + GetInstance()->GetServiceForProfile(profile, true).get());
|
| +}
|
| +
|
| +// static
|
| +scoped_refptr<ShortcutsBackend> ShortcutsBackendFactory::GetForProfileIfExists(
|
| + Profile* profile) {
|
| + return static_cast<ShortcutsBackend*>(
|
| + GetInstance()->GetServiceForProfile(profile, false).get());
|
| +}
|
| +
|
| +// static
|
| +ShortcutsBackendFactory* ShortcutsBackendFactory::GetInstance() {
|
| + return Singleton<ShortcutsBackendFactory>::get();
|
| +}
|
| +
|
| +// static
|
| +scoped_refptr<RefcountedProfileKeyedService>
|
| +ShortcutsBackendFactory::BuildProfileForTesting(Profile* profile) {
|
| + scoped_refptr<history::ShortcutsBackend> backend(
|
| + new ShortcutsBackend(profile, false));
|
| + if (backend->Init())
|
| + return backend;
|
| + return NULL;
|
| +}
|
| +
|
| +scoped_refptr<RefcountedProfileKeyedService>
|
| +ShortcutsBackendFactory::BuildProfileNoDatabaseForTesting(Profile* profile) {
|
| + scoped_refptr<history::ShortcutsBackend> backend(
|
| + new ShortcutsBackend(profile, true));
|
| + if (backend->Init())
|
| + return backend;
|
| + return NULL;
|
| +}
|
| +
|
| +ShortcutsBackendFactory::ShortcutsBackendFactory()
|
| + : RefcountedProfileKeyedServiceFactory(
|
| + "ShortcutsBackend",
|
| + ProfileDependencyManager::GetInstance()) {
|
| +}
|
| +
|
| +ShortcutsBackendFactory::~ShortcutsBackendFactory() {}
|
| +
|
| +scoped_refptr<RefcountedProfileKeyedService>
|
| +ShortcutsBackendFactory::BuildServiceInstanceFor(Profile* profile) const {
|
| + scoped_refptr<history::ShortcutsBackend> backend(
|
| + new ShortcutsBackend(profile, false));
|
| + if (backend->Init())
|
| + return backend;
|
| + return NULL;
|
| +}
|
| +
|
| +bool ShortcutsBackendFactory::ServiceIsNULLWhileTesting() {
|
| + return true;
|
| +}
|
|
|
| Property changes on: chrome/browser/history/shortcuts_backend_factory.cc
|
| ___________________________________________________________________
|
| Added: svn:eol-style
|
| + LF
|
|
|
|
|