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

Side by Side Diff: chrome/browser/search/suggestions/suggestions_service_factory.cc

Issue 392983007: [Suggestions] Make ThumbnailManager implement ImageManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 6 years, 5 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 | Annotate | Revision Log
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 "chrome/browser/search/suggestions/suggestions_service_factory.h" 5 #include "chrome/browser/search/suggestions/suggestions_service_factory.h"
6 6
7 #include "base/memory/scoped_ptr.h"
7 #include "base/prefs/pref_service.h" 8 #include "base/prefs/pref_service.h"
8 #include "chrome/browser/profiles/incognito_helpers.h" 9 #include "chrome/browser/profiles/incognito_helpers.h"
9 #include "chrome/browser/profiles/profile.h" 10 #include "chrome/browser/profiles/profile.h"
10 #include "chrome/browser/search/suggestions/blacklist_store.h" 11 #include "chrome/browser/search/suggestions/blacklist_store.h"
12 #include "chrome/browser/search/suggestions/image_manager.h"
11 #include "chrome/browser/search/suggestions/proto/suggestions.pb.h" 13 #include "chrome/browser/search/suggestions/proto/suggestions.pb.h"
12 #include "chrome/browser/search/suggestions/suggestions_service.h" 14 #include "chrome/browser/search/suggestions/suggestions_service.h"
13 #include "chrome/browser/search/suggestions/suggestions_store.h" 15 #include "chrome/browser/search/suggestions/suggestions_store.h"
16 #include "chrome/browser/search/suggestions/thumbnail_manager.h"
14 #include "chrome/common/pref_names.h" 17 #include "chrome/common/pref_names.h"
15 #include "components/keyed_service/content/browser_context_dependency_manager.h" 18 #include "components/keyed_service/content/browser_context_dependency_manager.h"
16 #include "components/leveldb_proto/proto_database.h" 19 #include "components/leveldb_proto/proto_database.h"
17 #include "components/leveldb_proto/proto_database_impl.h" 20 #include "components/leveldb_proto/proto_database_impl.h"
18 #include "components/pref_registry/pref_registry_syncable.h" 21 #include "components/pref_registry/pref_registry_syncable.h"
19 #include "content/public/browser/browser_context.h" 22 #include "content/public/browser/browser_context.h"
20 #include "content/public/browser/browser_thread.h" 23 #include "content/public/browser/browser_thread.h"
21 24
22 namespace suggestions { 25 namespace suggestions {
23 26
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 background_task_runner)); 69 background_task_runner));
67 70
68 base::FilePath database_dir( 71 base::FilePath database_dir(
69 the_profile->GetPath().Append(FILE_PATH_LITERAL("Thumbnails"))); 72 the_profile->GetPath().Append(FILE_PATH_LITERAL("Thumbnails")));
70 73
71 scoped_ptr<ThumbnailManager> thumbnail_manager(new ThumbnailManager( 74 scoped_ptr<ThumbnailManager> thumbnail_manager(new ThumbnailManager(
72 the_profile->GetRequestContext(), 75 the_profile->GetRequestContext(),
73 db.PassAs<leveldb_proto::ProtoDatabase<ThumbnailData> >(), database_dir)); 76 db.PassAs<leveldb_proto::ProtoDatabase<ThumbnailData> >(), database_dir));
74 return new SuggestionsService( 77 return new SuggestionsService(
75 the_profile->GetRequestContext(), suggestions_store.Pass(), 78 the_profile->GetRequestContext(), suggestions_store.Pass(),
76 thumbnail_manager.Pass(), blacklist_store.Pass()); 79 thumbnail_manager.PassAs<ImageManager>(), blacklist_store.Pass());
77 } 80 }
78 81
79 void SuggestionsServiceFactory::RegisterProfilePrefs( 82 void SuggestionsServiceFactory::RegisterProfilePrefs(
80 user_prefs::PrefRegistrySyncable* registry) { 83 user_prefs::PrefRegistrySyncable* registry) {
81 SuggestionsService::RegisterProfilePrefs(registry); 84 SuggestionsService::RegisterProfilePrefs(registry);
82 } 85 }
83 86
84 } // namespace suggestions 87 } // namespace suggestions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698