| OLD | NEW |
| 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/in_memory_url_index_factory.h" | 5 #include "ios/chrome/browser/autocomplete/in_memory_url_index_factory.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/memory/singleton.h" | 9 #include "base/memory/singleton.h" |
| 10 #include "components/keyed_service/core/service_access_type.h" | 10 #include "components/keyed_service/core/service_access_type.h" |
| 11 #include "components/keyed_service/ios/browser_state_dependency_manager.h" | 11 #include "components/keyed_service/ios/browser_state_dependency_manager.h" |
| 12 #include "components/omnibox/browser/in_memory_url_index.h" | 12 #include "components/omnibox/browser/in_memory_url_index.h" |
| 13 #include "components/prefs/pref_service.h" | 13 #include "components/prefs/pref_service.h" |
| 14 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h" | 14 #include "ios/chrome/browser/bookmarks/bookmark_model_factory.h" |
| 15 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" | 15 #include "ios/chrome/browser/browser_state/browser_state_otr_helper.h" |
| 16 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 16 #include "ios/chrome/browser/chrome_url_constants.h" | 17 #include "ios/chrome/browser/chrome_url_constants.h" |
| 17 #include "ios/chrome/browser/history/history_service_factory.h" | 18 #include "ios/chrome/browser/history/history_service_factory.h" |
| 18 #include "ios/chrome/browser/pref_names.h" | 19 #include "ios/chrome/browser/pref_names.h" |
| 19 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 20 #include "ios/web/public/web_thread.h" | 20 #include "ios/web/public/web_thread.h" |
| 21 | 21 |
| 22 namespace ios { | 22 namespace ios { |
| 23 | 23 |
| 24 namespace { | 24 namespace { |
| 25 | 25 |
| 26 scoped_ptr<KeyedService> BuildInMemoryURLIndex(web::BrowserState* context) { | 26 scoped_ptr<KeyedService> BuildInMemoryURLIndex(web::BrowserState* context) { |
| 27 ios::ChromeBrowserState* browser_state = | 27 ios::ChromeBrowserState* browser_state = |
| 28 ios::ChromeBrowserState::FromBrowserState(context); | 28 ios::ChromeBrowserState::FromBrowserState(context); |
| 29 | 29 |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 web::BrowserState* InMemoryURLIndexFactory::GetBrowserStateToUse( | 80 web::BrowserState* InMemoryURLIndexFactory::GetBrowserStateToUse( |
| 81 web::BrowserState* context) const { | 81 web::BrowserState* context) const { |
| 82 return GetBrowserStateRedirectedInIncognito(context); | 82 return GetBrowserStateRedirectedInIncognito(context); |
| 83 } | 83 } |
| 84 | 84 |
| 85 bool InMemoryURLIndexFactory::ServiceIsNULLWhileTesting() const { | 85 bool InMemoryURLIndexFactory::ServiceIsNULLWhileTesting() const { |
| 86 return true; | 86 return true; |
| 87 } | 87 } |
| 88 | 88 |
| 89 } // namespace ios | 89 } // namespace ios |
| OLD | NEW |