| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/suggestions/suggestions_service_factory.h" | 5 #include "ios/chrome/browser/suggestions/suggestions_service_factory.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
| 9 #include "base/sequenced_task_runner.h" | 9 #include "base/sequenced_task_runner.h" |
| 10 #include "base/threading/sequenced_worker_pool.h" | 10 #include "base/threading/sequenced_worker_pool.h" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 new leveldb_proto::ProtoDatabaseImpl<ImageData>(background_task_runner)); | 68 new leveldb_proto::ProtoDatabaseImpl<ImageData>(background_task_runner)); |
| 69 scoped_ptr<ImageFetcher> image_fetcher(new ImageFetcherImpl( | 69 scoped_ptr<ImageFetcher> image_fetcher(new ImageFetcherImpl( |
| 70 browser_state->GetRequestContext(), sequenced_worker_pool)); | 70 browser_state->GetRequestContext(), sequenced_worker_pool)); |
| 71 scoped_ptr<ImageManager> thumbnail_manager( | 71 scoped_ptr<ImageManager> thumbnail_manager( |
| 72 new ImageManager(image_fetcher.Pass(), db.Pass(), database_dir)); | 72 new ImageManager(image_fetcher.Pass(), db.Pass(), database_dir)); |
| 73 return new SuggestionsService( | 73 return new SuggestionsService( |
| 74 browser_state->GetRequestContext(), suggestions_store.Pass(), | 74 browser_state->GetRequestContext(), suggestions_store.Pass(), |
| 75 thumbnail_manager.Pass(), blacklist_store.Pass()); | 75 thumbnail_manager.Pass(), blacklist_store.Pass()); |
| 76 } | 76 } |
| 77 | 77 |
| 78 void SuggestionsServiceFactory::RegisterProfilePrefs( | 78 void SuggestionsServiceFactory::RegisterBrowserStatePrefs( |
| 79 user_prefs::PrefRegistrySyncable* registry) { | 79 user_prefs::PrefRegistrySyncable* registry) { |
| 80 SuggestionsService::RegisterProfilePrefs(registry); | 80 SuggestionsService::RegisterProfilePrefs(registry); |
| 81 } | 81 } |
| 82 | 82 |
| 83 } // namespace suggestions | 83 } // namespace suggestions |
| OLD | NEW |