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

Side by Side Diff: ios/chrome/browser/favicon/favicon_service_factory.cc

Issue 1222013005: Implements WebHistoryServiceFactory on iOS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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
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/favicon/favicon_service_factory.h" 5 #include "ios/chrome/browser/favicon/favicon_service_factory.h"
6 6
7 #include "base/memory/singleton.h" 7 #include "base/memory/singleton.h"
8 #include "components/favicon/core/favicon_service.h" 8 #include "components/favicon/core/favicon_service.h"
9 #include "components/keyed_service/core/service_access_type.h" 9 #include "components/keyed_service/core/service_access_type.h"
10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h"
(...skipping 14 matching lines...) Expand all
25 return static_cast<favicon::FaviconService*>( 25 return static_cast<favicon::FaviconService*>(
26 GetInstance()->GetServiceForBrowserState( 26 GetInstance()->GetServiceForBrowserState(
27 browser_state->GetOriginalChromeBrowserState(), true)); 27 browser_state->GetOriginalChromeBrowserState(), true));
28 } 28 }
29 29
30 // ios::ChromeBrowserState is OffTheRecord without access. 30 // ios::ChromeBrowserState is OffTheRecord without access.
31 NOTREACHED() << "ChromeBrowserState is OffTheRecord"; 31 NOTREACHED() << "ChromeBrowserState is OffTheRecord";
32 return nullptr; 32 return nullptr;
33 } 33 }
34 34
35 // static
35 FaviconServiceFactory* FaviconServiceFactory::GetInstance() { 36 FaviconServiceFactory* FaviconServiceFactory::GetInstance() {
36 return Singleton<FaviconServiceFactory>::get(); 37 return Singleton<FaviconServiceFactory>::get();
37 } 38 }
38 39
39 FaviconServiceFactory::FaviconServiceFactory() 40 FaviconServiceFactory::FaviconServiceFactory()
40 : BrowserStateKeyedServiceFactory( 41 : BrowserStateKeyedServiceFactory(
41 "FaviconService", 42 "FaviconService",
42 BrowserStateDependencyManager::GetInstance()) { 43 BrowserStateDependencyManager::GetInstance()) {
43 DependsOn(ios::HistoryServiceFactory::GetInstance()); 44 DependsOn(ios::HistoryServiceFactory::GetInstance());
44 } 45 }
45 46
46 FaviconServiceFactory::~FaviconServiceFactory() { 47 FaviconServiceFactory::~FaviconServiceFactory() {
47 } 48 }
48 49
49 scoped_ptr<KeyedService> FaviconServiceFactory::BuildServiceInstanceFor( 50 scoped_ptr<KeyedService> FaviconServiceFactory::BuildServiceInstanceFor(
50 web::BrowserState* context) const { 51 web::BrowserState* context) const {
51 ios::ChromeBrowserState* browser_state = 52 ios::ChromeBrowserState* browser_state =
52 ios::ChromeBrowserState::FromBrowserState(context); 53 ios::ChromeBrowserState::FromBrowserState(context);
53 return make_scoped_ptr(new favicon::FaviconService( 54 return make_scoped_ptr(new favicon::FaviconService(
54 make_scoped_ptr(new FaviconClientImpl), 55 make_scoped_ptr(new FaviconClientImpl),
55 ios::HistoryServiceFactory::GetForBrowserState( 56 ios::HistoryServiceFactory::GetForBrowserState(
56 browser_state, ServiceAccessType::EXPLICIT_ACCESS))); 57 browser_state, ServiceAccessType::EXPLICIT_ACCESS)));
57 } 58 }
58 59
59 bool FaviconServiceFactory::ServiceIsNULLWhileTesting() const { 60 bool FaviconServiceFactory::ServiceIsNULLWhileTesting() const {
60 return true; 61 return true;
61 } 62 }
62 63
63 } // namespace ios 64 } // namespace ios
OLDNEW
« no previous file with comments | « ios/chrome/browser/favicon/favicon_service_factory.h ('k') | ios/chrome/browser/google/google_url_tracker_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698