Chromium Code Reviews| Index: chrome/browser/profiles/profile_keyed_service_factory.h |
| diff --git a/chrome/browser/profiles/profile_keyed_service_factory.h b/chrome/browser/profiles/profile_keyed_service_factory.h |
| index fd33b150b11854d5d33a9f822efc9d124b5bb46a..81262077dded72abeb44fdd3e2a37998ace70522 100644 |
| --- a/chrome/browser/profiles/profile_keyed_service_factory.h |
| +++ b/chrome/browser/profiles/profile_keyed_service_factory.h |
| @@ -20,10 +20,26 @@ class ProfileKeyedService; |
| // shutdown/destruction order. In each derived classes' constructors, the |
| // implementors must explicitly state which services are depended on. |
| class ProfileKeyedServiceFactory { |
| - protected: |
| - friend class ProfileDependencyManager; |
| - friend class ProfileDependencyManagerUnittests; |
| + public: |
| + typedef ProfileKeyedService* (*FactoryFunction)(Profile* profile); |
|
Avi (use Gerrit)
2011/04/12 13:57:15
Can you pull this into the ifdef?
Torne
2011/04/12 15:22:12
No, it's needed to declare factory_, which is acce
|
| + |
| +#if defined(UNIT_TEST) |
| + // Associate an already-created |service| with |profile| for this factory. |
| + // The service may be a mock, or may be NULL to inhibit automatic creation of |
| + // the service by the default function. A mock factory set with |
| + // |set_test_factory| will be called instead if the service is NULL. |
| + void ForceAssociationBetween(Profile* profile, ProfileKeyedService* service) { |
| + Associate(profile, service); |
| + } |
| + |
| + // Sets the factory function to use to create mock instances of this service. |
| + // The factory function will only be called for profiles for which |
| + // |ForceAssociationBetween| has been previously called with a NULL service |
| + // pointer, and therefore does not affect normal non-test profiles. |
| + void set_test_factory(FactoryFunction factory) { factory_ = factory; } |
| +#endif |
| + protected: |
| // ProfileKeyedServiceFactories must communicate with a |
| // ProfileDependencyManager. For all non-test code, write your subclass |
| // constructors like this: |
| @@ -74,6 +90,9 @@ class ProfileKeyedServiceFactory { |
| virtual void ProfileDestroyed(Profile* profile); |
| private: |
| + friend class ProfileDependencyManager; |
| + friend class ProfileDependencyManagerUnittests; |
| + |
| // The mapping between a Profile and its service. |
| std::map<Profile*, ProfileKeyedService*> mapping_; |
| @@ -81,6 +100,9 @@ class ProfileKeyedServiceFactory { |
| // this will always be ProfileDependencyManager::GetInstance(), but unit |
| // tests will want to use their own copy. |
| ProfileDependencyManager* dependency_manager_; |
| + |
| + // A mock factory function to use to create the service, used by tests. |
|
Avi (use Gerrit)
2011/04/12 13:57:15
If this is only used by tests, can you ifdef this
Torne
2011/04/12 15:22:12
No, the implementation of the class is compiled in
|
| + FactoryFunction factory_; |
| }; |
| #endif // CHROME_BROWSER_PROFILES_PROFILE_KEYED_SERVICE_FACTORY_H_ |