| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/plugin_prefs_factory.h" | 5 #include "chrome/browser/plugin_prefs_factory.h" |
| 6 | 6 |
| 7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
| 8 #include "chrome/browser/plugin_prefs.h" | 8 #include "chrome/browser/plugin_prefs.h" |
| 9 #include "chrome/browser/prefs/pref_service.h" | 9 #include "chrome/browser/prefs/pref_service.h" |
| 10 #include "chrome/browser/profiles/profile.h" | 10 #include "chrome/browser/profiles/profile.h" |
| 11 #include "chrome/browser/profiles/profile_dependency_manager.h" | 11 #include "chrome/browser/profiles/profile_dependency_manager.h" |
| 12 #include "chrome/browser/profiles/profile_keyed_service.h" | 12 #include "chrome/browser/profiles/profile_keyed_service.h" |
| 13 #include "chrome/common/chrome_paths.h" | 13 #include "chrome/common/chrome_paths.h" |
| 14 #include "chrome/common/pref_names.h" | 14 #include "chrome/common/pref_names.h" |
| 15 | 15 |
| 16 // static | 16 // static |
| 17 PluginPrefsFactory* PluginPrefsFactory::GetInstance() { | 17 PluginPrefsFactory* PluginPrefsFactory::GetInstance() { |
| 18 return Singleton<PluginPrefsFactory>::get(); | 18 return Singleton<PluginPrefsFactory>::get(); |
| 19 } | 19 } |
| 20 | 20 |
| 21 // static | 21 // static |
| 22 ProfileKeyedBase* PluginPrefsFactory::CreatePrefsForProfile( | 22 scoped_refptr<PluginPrefs> PluginPrefsFactory::GetPrefsForProfile( |
| 23 Profile* profile) { | 23 Profile* profile) { |
| 24 return GetInstance()->BuildServiceInstanceFor(profile); | 24 return static_cast<PluginPrefs*>( |
| 25 GetInstance()->GetServiceForProfile(profile, true).get()); |
| 25 } | 26 } |
| 26 | 27 |
| 27 PluginPrefs* PluginPrefsFactory::GetPrefsForProfile(Profile* profile) { | 28 // static |
| 28 return static_cast<PluginPrefs*>(GetBaseForProfile(profile, true)); | 29 scoped_refptr<RefcountedProfileKeyedService> |
| 30 PluginPrefsFactory::CreateForTestingProfile(Profile* profile) { |
| 31 return static_cast<PluginPrefs*>( |
| 32 GetInstance()->BuildServiceInstanceFor(profile).get()); |
| 29 } | 33 } |
| 30 | 34 |
| 31 PluginPrefsFactory::PluginPrefsFactory() | 35 PluginPrefsFactory::PluginPrefsFactory() |
| 32 : RefcountedProfileKeyedServiceFactory( | 36 : RefcountedProfileKeyedServiceFactory( |
| 33 "PluginPrefs", ProfileDependencyManager::GetInstance()) { | 37 "PluginPrefs", ProfileDependencyManager::GetInstance()) { |
| 34 } | 38 } |
| 35 | 39 |
| 36 PluginPrefsFactory::~PluginPrefsFactory() {} | 40 PluginPrefsFactory::~PluginPrefsFactory() {} |
| 37 | 41 |
| 38 RefcountedProfileKeyedService* PluginPrefsFactory::BuildServiceInstanceFor( | 42 scoped_refptr<RefcountedProfileKeyedService> |
| 39 Profile* profile) const { | 43 PluginPrefsFactory::BuildServiceInstanceFor(Profile* profile) const { |
| 40 PluginPrefs* plugin_prefs = new PluginPrefs(); | 44 scoped_refptr<PluginPrefs> plugin_prefs(new PluginPrefs()); |
| 41 plugin_prefs->set_profile(profile->GetOriginalProfile()); | 45 plugin_prefs->set_profile(profile->GetOriginalProfile()); |
| 42 plugin_prefs->SetPrefs(profile->GetPrefs()); | 46 plugin_prefs->SetPrefs(profile->GetPrefs()); |
| 43 return plugin_prefs; | 47 return plugin_prefs; |
| 44 } | 48 } |
| 45 | 49 |
| 46 void PluginPrefsFactory::RegisterUserPrefs(PrefService* prefs) { | 50 void PluginPrefsFactory::RegisterUserPrefs(PrefService* prefs) { |
| 47 FilePath internal_dir; | 51 FilePath internal_dir; |
| 48 PathService::Get(chrome::DIR_INTERNAL_PLUGINS, &internal_dir); | 52 PathService::Get(chrome::DIR_INTERNAL_PLUGINS, &internal_dir); |
| 49 prefs->RegisterFilePathPref(prefs::kPluginsLastInternalDirectory, | 53 prefs->RegisterFilePathPref(prefs::kPluginsLastInternalDirectory, |
| 50 internal_dir, | 54 internal_dir, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 69 return true; | 73 return true; |
| 70 } | 74 } |
| 71 | 75 |
| 72 bool PluginPrefsFactory::ServiceIsNULLWhileTesting() { | 76 bool PluginPrefsFactory::ServiceIsNULLWhileTesting() { |
| 73 return true; | 77 return true; |
| 74 } | 78 } |
| 75 | 79 |
| 76 bool PluginPrefsFactory::ServiceIsCreatedWithProfile() { | 80 bool PluginPrefsFactory::ServiceIsCreatedWithProfile() { |
| 77 return true; | 81 return true; |
| 78 } | 82 } |
| OLD | NEW |