diff options
author | pinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-12 20:38:45 +0000 |
---|---|---|
committer | pinkerton@chromium.org <pinkerton@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-12 20:38:45 +0000 |
commit | b7759e80dbbf1ccc1ba6b6f74114c45740d8bcc7 (patch) | |
tree | 2fd15f287494b03f5bec84c96dec356e3e6ab2c3 /chrome/browser/cocoa/tab_strip_controller.h | |
parent | e3004debf8335781c583f63035872520a75978a3 (diff) | |
download | chromium_src-b7759e80dbbf1ccc1ba6b6f74114c45740d8bcc7.zip chromium_src-b7759e80dbbf1ccc1ba6b6f74114c45740d8bcc7.tar.gz chromium_src-b7759e80dbbf1ccc1ba6b6f74114c45740d8bcc7.tar.bz2 |
Don't rely on subview ordering to be equivalent to tab ordering. Allows us to correctly set z-order on tabs. Add animation to tabs closing. Fix issue where new tab button would not draw correctly by pulling it from the nib. Fix memory leak in TabController. Fix console output about missing image.
Review URL: http://codereview.chromium.org/43144
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11575 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/tab_strip_controller.h')
-rw-r--r-- | chrome/browser/cocoa/tab_strip_controller.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/cocoa/tab_strip_controller.h b/chrome/browser/cocoa/tab_strip_controller.h index 1e76e40..b38bd19 100644 --- a/chrome/browser/cocoa/tab_strip_controller.h +++ b/chrome/browser/cocoa/tab_strip_controller.h @@ -30,7 +30,7 @@ class ToolbarModel; @private TabContents* currentTab_; // weak, tab for which we're showing state TabStripView* tabView_; // weak - NSButton* newTabButton_; + NSButton* newTabButton_; // weak, obtained from the nib. TabStripBridge* bridge_; TabStripModel* tabModel_; // weak ToolbarModel* toolbarModel_; // weak, one per browser |