Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7179)

Unified Diff: chrome/browser/history/shortcuts_backend_factory.cc

Issue 200493006: Move the ShortcutsBackend from history to autocomplete so that it can fully (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/history/shortcuts_backend_factory.cc
===================================================================
--- chrome/browser/history/shortcuts_backend_factory.cc (revision 257281)
+++ chrome/browser/history/shortcuts_backend_factory.cc (working copy)
@@ -1,76 +0,0 @@
-// 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 "base/prefs/pref_service.h"
-#include "chrome/browser/history/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"
-
-using history::ShortcutsBackend;
-
-// static
-scoped_refptr<ShortcutsBackend> ShortcutsBackendFactory::GetForProfile(
- Profile* profile) {
- return static_cast<ShortcutsBackend*>(
- GetInstance()->GetServiceForBrowserContext(profile, true).get());
-}
-
-// static
-scoped_refptr<ShortcutsBackend> ShortcutsBackendFactory::GetForProfileIfExists(
- Profile* profile) {
- return static_cast<ShortcutsBackend*>(
- GetInstance()->GetServiceForBrowserContext(profile, false).get());
-}
-
-// static
-ShortcutsBackendFactory* ShortcutsBackendFactory::GetInstance() {
- return Singleton<ShortcutsBackendFactory>::get();
-}
-
-// static
-scoped_refptr<RefcountedBrowserContextKeyedService>
-ShortcutsBackendFactory::BuildProfileForTesting(
- content::BrowserContext* profile) {
- scoped_refptr<history::ShortcutsBackend> backend(
- new ShortcutsBackend(static_cast<Profile*>(profile), false));
- if (backend->Init())
- return backend;
- return NULL;
-}
-
-// static
-scoped_refptr<RefcountedBrowserContextKeyedService>
-ShortcutsBackendFactory::BuildProfileNoDatabaseForTesting(
- content::BrowserContext* profile) {
- scoped_refptr<history::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<history::ShortcutsBackend> backend(
- new ShortcutsBackend(static_cast<Profile*>(profile), false));
- if (backend->Init())
- return backend;
- return NULL;
-}
-
-bool ShortcutsBackendFactory::ServiceIsNULLWhileTesting() const {
- return true;
-}
« no previous file with comments | « chrome/browser/history/shortcuts_backend_factory.h ('k') | chrome/browser/history/shortcuts_backend_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698