| Index: chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.h
|
| ===================================================================
|
| --- chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.h (revision 95527)
|
| +++ chrome/browser/ui/gtk/bookmarks/bookmark_bar_gtk.h (working copy)
|
| @@ -37,7 +37,6 @@
|
| class GtkThemeService;
|
| class MenuGtk;
|
| class PageNavigator;
|
| -class Profile;
|
| class TabstripOriginProvider;
|
|
|
| class BookmarkBarGtk : public ui::AnimationDelegate,
|
| @@ -52,18 +51,10 @@
|
| static const int kBookmarkBarNTPHeight;
|
|
|
| BookmarkBarGtk(BrowserWindowGtk* window,
|
| - Profile* profile,
|
| Browser* browser,
|
| TabstripOriginProvider* tabstrip_origin_provider);
|
| virtual ~BookmarkBarGtk();
|
|
|
| - // Resets the profile. This removes any buttons for the current profile and
|
| - // recreates the models.
|
| - void SetProfile(Profile* profile);
|
| -
|
| - // Returns the current profile.
|
| - Profile* GetProfile() { return profile_; }
|
| -
|
| // Returns the current browser.
|
| Browser* browser() const { return browser_; }
|
|
|
| @@ -75,7 +66,7 @@
|
| void SetPageNavigator(PageNavigator* navigator);
|
|
|
| // Create the contents of the bookmark bar.
|
| - void Init(Profile* profile);
|
| + void Init();
|
|
|
| // Changes the state of the bookmark bar.
|
| void SetBookmarkBarState(BookmarkBar::State state,
|
| @@ -302,8 +293,6 @@
|
| // Updates the drag&drop state when |edit_bookmarks_enabled_| changes.
|
| void OnEditBookmarksEnabledChanged();
|
|
|
| - Profile* profile_;
|
| -
|
| // Used for opening urls.
|
| PageNavigator* page_navigator_;
|
|
|
|
|