summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/bookmark_bar_state_controller.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/cocoa/bookmark_bar_state_controller.h')
-rw-r--r--chrome/browser/cocoa/bookmark_bar_state_controller.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/cocoa/bookmark_bar_state_controller.h b/chrome/browser/cocoa/bookmark_bar_state_controller.h
index b3aeafd..761d907 100644
--- a/chrome/browser/cocoa/bookmark_bar_state_controller.h
+++ b/chrome/browser/cocoa/bookmark_bar_state_controller.h
@@ -7,17 +7,17 @@
#import <Cocoa/Cocoa.h>
-class Browser;
+class Profile;
// A class to manage bookmark bar state (visible or not). State is
// shared among all tabs and saved in a preference.
@interface BookmarkBarStateController : NSObject {
@private
- Browser* browser_;
+ Profile* profile_;
BOOL visible_;
}
-- (id)initWithBrowser:(Browser *)browser;
+- (id)initWithProfile:(Profile *)browser;
// Return YES or NO reflecting visibility state of the bookmark bar.
- (BOOL)visible;