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

Side by Side Diff: ios/chrome/browser/suggestions/suggestions_service_factory.mm

Issue 1090373003: Allow cross dependencies between BCKSF and BSKSF (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove wrapper methods Created 5 years, 7 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
« no previous file with comments | « ios/chrome/browser/suggestions/suggestions_service_factory.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ios/chrome/browser/suggestions/suggestions_service_factory.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698