Index: chrome/browser/bookmarks/bookmark_model_factory.h |
diff --git a/chrome/browser/bookmarks/bookmark_model_factory.h b/chrome/browser/bookmarks/bookmark_model_factory.h |
index 5b4fd183c972594c2320ded12a548f8dd8b16e72..604c73e2f1f8e7ac460be7cdfffa8fb795b9d2a6 100644 |
--- a/chrome/browser/bookmarks/bookmark_model_factory.h |
+++ b/chrome/browser/bookmarks/bookmark_model_factory.h |
@@ -5,26 +5,21 @@ |
#ifndef CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_ |
#define CHROME_BROWSER_BOOKMARKS_BOOKMARK_MODEL_FACTORY_H_ |
-#include "base/basictypes.h" |
-#include "base/compiler_specific.h" |
+#include "base/macros.h" |
#include "components/keyed_service/content/browser_context_keyed_service_factory.h" |
template <typename T> struct DefaultSingletonTraits; |
class BookmarkModel; |
-class ChromeBookmarkClient; |
class Profile; |
-// Singleton that owns all BookmarkModel and associates them with Profiles. |
+// Singleton that owns all BookmarkModels and associates them with Profiles. |
class BookmarkModelFactory : public BrowserContextKeyedServiceFactory { |
public: |
static BookmarkModel* GetForProfile(Profile* profile); |
static BookmarkModel* GetForProfileIfExists(Profile* profile); |
- static ChromeBookmarkClient* GetChromeBookmarkClientForProfile( |
- Profile* profile); |
- |
static BookmarkModelFactory* GetInstance(); |
private: |