| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/custom_handlers/protocol_handler_registry_factory.h" |
| 6 |
| 7 #include "base/memory/singleton.h" |
| 8 #include "chrome/browser/custom_handlers/protocol_handler_registry.h" |
| 9 #include "chrome/browser/extensions/extension_system_factory.h" |
| 10 #include "chrome/browser/profiles/profile.h" |
| 11 #include "chrome/browser/profiles/profile_dependency_manager.h" |
| 12 |
| 13 // static |
| 14 ProtocolHandlerRegistryFactory* ProtocolHandlerRegistryFactory::GetInstance() { |
| 15 return Singleton<ProtocolHandlerRegistryFactory>::get(); |
| 16 } |
| 17 |
| 18 // static |
| 19 ProtocolHandlerRegistry* ProtocolHandlerRegistryFactory::GetForProfile( |
| 20 Profile* profile) { |
| 21 return static_cast<ProtocolHandlerRegistry*>( |
| 22 GetInstance()->GetServiceForProfile(profile, true)); |
| 23 } |
| 24 |
| 25 ProtocolHandlerRegistryFactory::ProtocolHandlerRegistryFactory() |
| 26 : ProfileKeyedServiceFactory("ProtocolHandlerRegistry", |
| 27 ProfileDependencyManager::GetInstance()) { |
| 28 } |
| 29 |
| 30 ProtocolHandlerRegistryFactory::~ProtocolHandlerRegistryFactory() { |
| 31 } |
| 32 |
| 33 // Will be created when initializing profile_io_data, so we might |
| 34 // as well have the framework create this along with other |
| 35 // PKSs to preserve orderly civic conduct :) |
| 36 bool ProtocolHandlerRegistryFactory::ServiceIsCreatedWithProfile() { |
| 37 return true; |
| 38 } |
| 39 |
| 40 // Allows the produced registry to be used in incognito mode. |
| 41 bool ProtocolHandlerRegistryFactory::ServiceRedirectedInIncognito() { |
| 42 return true; |
| 43 } |
| 44 |
| 45 // Do not create this service for tests. MANY tests will fail |
| 46 // due to the threading requirements of this service. ALSO, |
| 47 // not creating this increases test isolation (which is GOOD!) |
| 48 bool ProtocolHandlerRegistryFactory::ServiceIsNULLWhileTesting() { |
| 49 return true; |
| 50 } |
| 51 |
| 52 ProfileKeyedService* ProtocolHandlerRegistryFactory::BuildServiceInstanceFor( |
| 53 Profile* profile) const { |
| 54 |
| 55 ProtocolHandlerRegistry* registry = new ProtocolHandlerRegistry( |
| 56 profile, new ProtocolHandlerRegistry::Delegate()); |
| 57 |
| 58 registry->InitProtocolSettings(); |
| 59 |
| 60 return registry; |
| 61 } |
| OLD | NEW |