diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-18 17:01:32 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-18 17:01:32 +0000 |
commit | 077b3d052e237b2049671cde5d3bcb125fb02d56 (patch) | |
tree | adecf4ee8dc8251fc835bc32930c874cba05fca3 /chrome/browser | |
parent | 0ad1d2d6eb6f1e4edff72dabb8e2b2f9ba051f88 (diff) | |
download | chromium_src-077b3d052e237b2049671cde5d3bcb125fb02d56.zip chromium_src-077b3d052e237b2049671cde5d3bcb125fb02d56.tar.gz chromium_src-077b3d052e237b2049671cde5d3bcb125fb02d56.tar.bz2 |
mac: Delete a few unused function declarations and one ivar.
BUG=none
TEST=still builds
Review URL: http://codereview.chromium.org/7390029
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92862 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser')
-rw-r--r-- | chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm | 2 | ||||
-rw-r--r-- | chrome/browser/ui/cocoa/tabs/tab_strip_view.h | 3 | ||||
-rw-r--r-- | chrome/browser/ui/cocoa/tabs/tab_strip_view.mm | 1 |
3 files changed, 0 insertions, 6 deletions
diff --git a/chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm b/chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm index 06927ea..3f375a5 100644 --- a/chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm +++ b/chrome/browser/ui/cocoa/tabs/tab_strip_controller.mm @@ -171,8 +171,6 @@ private: givesIndex:(NSInteger*)index disposition:(WindowOpenDisposition*)disposition; - (void)setNewTabButtonHoverState:(BOOL)showHover; -- (BOOL)shouldShowProfileMenuButton; -- (void)updateProfileMenuButton; @end // A simple view class that prevents the Window Server from dragging the area diff --git a/chrome/browser/ui/cocoa/tabs/tab_strip_view.h b/chrome/browser/ui/cocoa/tabs/tab_strip_view.h index 354fe5f..87296f4 100644 --- a/chrome/browser/ui/cocoa/tabs/tab_strip_view.h +++ b/chrome/browser/ui/cocoa/tabs/tab_strip_view.h @@ -12,7 +12,6 @@ #import "chrome/browser/ui/cocoa/url_drop_target.h" @class NewTabButton; -@class ProfileMenuButton; // A view class that handles rendering the tab strip and drops of URLS with // a positioning locator for drop feedback. @@ -26,7 +25,6 @@ // Weak; the following come from the nib. NewTabButton* newTabButton_; - ProfileMenuButton* profileMenuButton_; // Whether the drop-indicator arrow is shown, and if it is, the coordinate of // its tip. @@ -34,7 +32,6 @@ NSPoint dropArrowPosition_; } -@property(assign, nonatomic) IBOutlet ProfileMenuButton* profileMenuButton; @property(assign, nonatomic) BOOL dropArrowShown; @property(assign, nonatomic) NSPoint dropArrowPosition; diff --git a/chrome/browser/ui/cocoa/tabs/tab_strip_view.mm b/chrome/browser/ui/cocoa/tabs/tab_strip_view.mm index 47ab320..c8e82cb 100644 --- a/chrome/browser/ui/cocoa/tabs/tab_strip_view.mm +++ b/chrome/browser/ui/cocoa/tabs/tab_strip_view.mm @@ -14,7 +14,6 @@ @implementation TabStripView -@synthesize profileMenuButton = profileMenuButton_; @synthesize dropArrowShown = dropArrowShown_; @synthesize dropArrowPosition = dropArrowPosition_; |