| Index: chrome/browser/autocomplete/shortcuts_backend_factory.cc
|
| ===================================================================
|
| --- chrome/browser/autocomplete/shortcuts_backend_factory.cc (revision 257258)
|
| +++ chrome/browser/autocomplete/shortcuts_backend_factory.cc (working copy)
|
| @@ -2,16 +2,14 @@
|
| // 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/autocomplete/shortcuts_backend_factory.h"
|
|
|
| #include "base/prefs/pref_service.h"
|
| -#include "chrome/browser/history/shortcuts_backend.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"
|
|
|
| -using history::ShortcutsBackend;
|
| -
|
| // static
|
| scoped_refptr<ShortcutsBackend> ShortcutsBackendFactory::GetForProfile(
|
| Profile* profile) {
|
| @@ -35,7 +33,7 @@
|
| scoped_refptr<RefcountedBrowserContextKeyedService>
|
| ShortcutsBackendFactory::BuildProfileForTesting(
|
| content::BrowserContext* profile) {
|
| - scoped_refptr<history::ShortcutsBackend> backend(
|
| + scoped_refptr<ShortcutsBackend> backend(
|
| new ShortcutsBackend(static_cast<Profile*>(profile), false));
|
| if (backend->Init())
|
| return backend;
|
| @@ -46,7 +44,7 @@
|
| scoped_refptr<RefcountedBrowserContextKeyedService>
|
| ShortcutsBackendFactory::BuildProfileNoDatabaseForTesting(
|
| content::BrowserContext* profile) {
|
| - scoped_refptr<history::ShortcutsBackend> backend(
|
| + scoped_refptr<ShortcutsBackend> backend(
|
| new ShortcutsBackend(static_cast<Profile*>(profile), true));
|
| if (backend->Init())
|
| return backend;
|
| @@ -64,7 +62,7 @@
|
| scoped_refptr<RefcountedBrowserContextKeyedService>
|
| ShortcutsBackendFactory::BuildServiceInstanceFor(
|
| content::BrowserContext* profile) const {
|
| - scoped_refptr<history::ShortcutsBackend> backend(
|
| + scoped_refptr<ShortcutsBackend> backend(
|
| new ShortcutsBackend(static_cast<Profile*>(profile), false));
|
| if (backend->Init())
|
| return backend;
|
|
|