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

Unified Diff: chrome/browser/profiles/profile_keyed_service_factory.h

Issue 6813116: Revert 81277 - Profile shouldn't own DesktopNotificationService.DesktopNotificationService is now... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/profiles/profile_impl.cc ('k') | chrome/browser/profiles/profile_keyed_service_factory.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/profiles/profile_keyed_service_factory.h
===================================================================
--- chrome/browser/profiles/profile_keyed_service_factory.h (revision 81278)
+++ chrome/browser/profiles/profile_keyed_service_factory.h (working copy)
@@ -20,26 +20,10 @@
// shutdown/destruction order. In each derived classes' constructors, the
// implementors must explicitly state which services are depended on.
class ProfileKeyedServiceFactory {
- public:
- typedef ProfileKeyedService* (*FactoryFunction)(Profile* profile);
-
-#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:
+ friend class ProfileDependencyManager;
+ friend class ProfileDependencyManagerUnittests;
+
// ProfileKeyedServiceFactories must communicate with a
// ProfileDependencyManager. For all non-test code, write your subclass
// constructors like this:
@@ -90,9 +74,6 @@
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_;
@@ -100,9 +81,6 @@
// 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.
- FactoryFunction factory_;
};
#endif // CHROME_BROWSER_PROFILES_PROFILE_KEYED_SERVICE_FACTORY_H_
« no previous file with comments | « chrome/browser/profiles/profile_impl.cc ('k') | chrome/browser/profiles/profile_keyed_service_factory.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698