| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/browsing_data/browsing_data_remover_factory.h" | 5 #include "chrome/browser/browsing_data/browsing_data_remover_factory.h" |
| 6 | 6 |
| 7 #include "base/memory/ptr_util.h" | 7 #include "base/memory/ptr_util.h" |
| 8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
| 9 #include "chrome/browser/autofill/personal_data_manager_factory.h" | 9 #include "chrome/browser/autofill/personal_data_manager_factory.h" |
| 10 #include "chrome/browser/browsing_data/browsing_data_remover.h" | 10 #include "chrome/browser/browsing_data/browsing_data_remover_impl.h" |
| 11 #include "chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.h" | 11 #include "chrome/browser/browsing_data/chrome_browsing_data_remover_delegate.h" |
| 12 #include "chrome/browser/content_settings/host_content_settings_map_factory.h" | 12 #include "chrome/browser/content_settings/host_content_settings_map_factory.h" |
| 13 #include "chrome/browser/domain_reliability/service_factory.h" | 13 #include "chrome/browser/domain_reliability/service_factory.h" |
| 14 #include "chrome/browser/history/history_service_factory.h" | 14 #include "chrome/browser/history/history_service_factory.h" |
| 15 #include "chrome/browser/history/web_history_service_factory.h" | 15 #include "chrome/browser/history/web_history_service_factory.h" |
| 16 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_fact
ory.h" | 16 #include "chrome/browser/net/spdyproxy/data_reduction_proxy_chrome_settings_fact
ory.h" |
| 17 #include "chrome/browser/password_manager/password_store_factory.h" | 17 #include "chrome/browser/password_manager/password_store_factory.h" |
| 18 #include "chrome/browser/prerender/prerender_manager_factory.h" | 18 #include "chrome/browser/prerender/prerender_manager_factory.h" |
| 19 #include "chrome/browser/profiles/profile.h" | 19 #include "chrome/browser/profiles/profile.h" |
| 20 #include "chrome/browser/search_engines/template_url_service_factory.h" | 20 #include "chrome/browser/search_engines/template_url_service_factory.h" |
| (...skipping 18 matching lines...) Expand all Loading... |
| 39 #endif | 39 #endif |
| 40 | 40 |
| 41 // static | 41 // static |
| 42 BrowsingDataRemoverFactory* BrowsingDataRemoverFactory::GetInstance() { | 42 BrowsingDataRemoverFactory* BrowsingDataRemoverFactory::GetInstance() { |
| 43 return base::Singleton<BrowsingDataRemoverFactory>::get(); | 43 return base::Singleton<BrowsingDataRemoverFactory>::get(); |
| 44 } | 44 } |
| 45 | 45 |
| 46 // static | 46 // static |
| 47 BrowsingDataRemover* BrowsingDataRemoverFactory::GetForBrowserContext( | 47 BrowsingDataRemover* BrowsingDataRemoverFactory::GetForBrowserContext( |
| 48 content::BrowserContext* context) { | 48 content::BrowserContext* context) { |
| 49 return static_cast<BrowsingDataRemover*>( | 49 return static_cast<BrowsingDataRemoverImpl*>( |
| 50 GetInstance()->GetServiceForBrowserContext(context, true)); | 50 GetInstance()->GetServiceForBrowserContext(context, true)); |
| 51 } | 51 } |
| 52 | 52 |
| 53 BrowsingDataRemoverFactory::BrowsingDataRemoverFactory() | 53 BrowsingDataRemoverFactory::BrowsingDataRemoverFactory() |
| 54 : BrowserContextKeyedServiceFactory( | 54 : BrowserContextKeyedServiceFactory( |
| 55 "BrowsingDataRemover", | 55 "BrowsingDataRemover", |
| 56 BrowserContextDependencyManager::GetInstance()) { | 56 BrowserContextDependencyManager::GetInstance()) { |
| 57 DependsOn(autofill::PersonalDataManagerFactory::GetInstance()); | 57 DependsOn(autofill::PersonalDataManagerFactory::GetInstance()); |
| 58 DependsOn(DataReductionProxyChromeSettingsFactory::GetInstance()); | 58 DependsOn(DataReductionProxyChromeSettingsFactory::GetInstance()); |
| 59 DependsOn(domain_reliability::DomainReliabilityServiceFactory::GetInstance()); | 59 DependsOn(domain_reliability::DomainReliabilityServiceFactory::GetInstance()); |
| (...skipping 27 matching lines...) Expand all Loading... |
| 87 content::BrowserContext* context) const { | 87 content::BrowserContext* context) const { |
| 88 // For guest profiles the browsing data is in the OTR profile. | 88 // For guest profiles the browsing data is in the OTR profile. |
| 89 Profile* profile = static_cast<Profile*>(context); | 89 Profile* profile = static_cast<Profile*>(context); |
| 90 DCHECK(!profile->IsGuestSession() || profile->IsOffTheRecord()); | 90 DCHECK(!profile->IsGuestSession() || profile->IsOffTheRecord()); |
| 91 | 91 |
| 92 return profile; | 92 return profile; |
| 93 } | 93 } |
| 94 | 94 |
| 95 KeyedService* BrowsingDataRemoverFactory::BuildServiceInstanceFor( | 95 KeyedService* BrowsingDataRemoverFactory::BuildServiceInstanceFor( |
| 96 content::BrowserContext* context) const { | 96 content::BrowserContext* context) const { |
| 97 BrowsingDataRemover* remover = new BrowsingDataRemover(context); | 97 BrowsingDataRemoverImpl* remover = new BrowsingDataRemoverImpl(context); |
| 98 remover->set_embedder_delegate( | 98 remover->SetEmbedderDelegate( |
| 99 base::MakeUnique<ChromeBrowsingDataRemoverDelegate>(context)); | 99 base::MakeUnique<ChromeBrowsingDataRemoverDelegate>(context)); |
| 100 return remover; | 100 return remover; |
| 101 } | 101 } |
| OLD | NEW |