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

Side by Side Diff: ios/chrome/browser/autocomplete/shortcuts_backend_factory.cc

Issue 1662843002: Revert of Delete base/prefs and update callers to use components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ios/chrome/browser/autocomplete/shortcuts_backend_factory.h" 5 #include "ios/chrome/browser/autocomplete/shortcuts_backend_factory.h"
6 6
7 #include "base/memory/singleton.h" 7 #include "base/memory/singleton.h"
8 #include "base/prefs/pref_service.h"
8 #include "components/keyed_service/core/service_access_type.h" 9 #include "components/keyed_service/core/service_access_type.h"
9 #include "components/keyed_service/ios/browser_state_dependency_manager.h" 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h"
10 #include "components/omnibox/browser/shortcuts_backend.h" 11 #include "components/omnibox/browser/shortcuts_backend.h"
11 #include "components/omnibox/browser/shortcuts_constants.h" 12 #include "components/omnibox/browser/shortcuts_constants.h"
12 #include "components/prefs/pref_service.h"
13 #include "ios/chrome/browser/history/history_service_factory.h" 13 #include "ios/chrome/browser/history/history_service_factory.h"
14 #include "ios/chrome/browser/pref_names.h" 14 #include "ios/chrome/browser/pref_names.h"
15 #include "ios/chrome/browser/search_engines/template_url_service_factory.h" 15 #include "ios/chrome/browser/search_engines/template_url_service_factory.h"
16 #include "ios/chrome/browser/search_engines/ui_thread_search_terms_data.h" 16 #include "ios/chrome/browser/search_engines/ui_thread_search_terms_data.h"
17 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state. h" 17 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state. h"
18 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" 18 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h"
19 #include "ios/web/public/web_thread.h" 19 #include "ios/web/public/web_thread.h"
20 20
21 namespace ios { 21 namespace ios {
22 namespace { 22 namespace {
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 ios::ChromeBrowserState* browser_state = 73 ios::ChromeBrowserState* browser_state =
74 ios::ChromeBrowserState::FromBrowserState(context); 74 ios::ChromeBrowserState::FromBrowserState(context);
75 return CreateShortcutsBackend(browser_state, false /* suppress_db */); 75 return CreateShortcutsBackend(browser_state, false /* suppress_db */);
76 } 76 }
77 77
78 bool ShortcutsBackendFactory::ServiceIsNULLWhileTesting() const { 78 bool ShortcutsBackendFactory::ServiceIsNULLWhileTesting() const {
79 return true; 79 return true;
80 } 80 }
81 81
82 } // namespace ios 82 } // namespace ios
OLDNEW
« no previous file with comments | « ios/chrome/browser/autocomplete/in_memory_url_index_factory.cc ('k') | ios/chrome/browser/bookmarks/bookmark_model_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698