Index: chrome/browser/themes/theme_service_factory.h |
diff --git a/chrome/browser/themes/theme_service_factory.h b/chrome/browser/themes/theme_service_factory.h |
index 924704bf1f38706aa7d7cf039e1001206dc01e00..8b5d4b46f76e30480e7310ce717f0656decbaad7 100644 |
--- a/chrome/browser/themes/theme_service_factory.h |
+++ b/chrome/browser/themes/theme_service_factory.h |
@@ -5,12 +5,9 @@ |
#ifndef CHROME_BROWSER_THEMES_THEME_SERVICE_FACTORY_H_ |
#define CHROME_BROWSER_THEMES_THEME_SERVICE_FACTORY_H_ |
-#include <map> |
- |
+#include "base/logging.h" |
Elliot Glaysher
2011/08/10 17:47:54
Do you mean base/basictypes.h? I don't see log met
James Hawkins
2011/08/11 20:49:07
Oh damn, yes. Thanks.
|
#include "base/memory/singleton.h" |
#include "chrome/browser/profiles/profile_keyed_service_factory.h" |
-#include "content/common/notification_observer.h" |
-#include "content/common/notification_registrar.h" |
class ThemeService; |
class Extension; |
@@ -42,6 +39,8 @@ class ThemeServiceFactory : public ProfileKeyedServiceFactory { |
// ProfileKeyedServiceFactory: |
virtual ProfileKeyedService* BuildServiceInstanceFor(Profile* profile) const; |
virtual bool ServiceRedirectedInIncognito(); |
+ |
+ DISALLOW_COPY_AND_ASSIGN(ThemeServiceFactory); |
}; |
#endif // CHROME_BROWSER_THEMES_THEME_SERVICE_FACTORY_H_ |