summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/tab_strip_controller_unittest.mm
diff options
context:
space:
mode:
authorrohitrao@chromium.org <rohitrao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-29 17:58:47 +0000
committerrohitrao@chromium.org <rohitrao@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-29 17:58:47 +0000
commitaf2fd777dae98b84279707490382002276dfc006 (patch)
tree74e7b41b42f7c92a540f9a108ea176fcbf6817c3 /chrome/browser/cocoa/tab_strip_controller_unittest.mm
parentdce5df54b85ca90d4bd2d2a04c9f78d3a149072c (diff)
downloadchromium_src-af2fd777dae98b84279707490382002276dfc006.zip
chromium_src-af2fd777dae98b84279707490382002276dfc006.tar.gz
chromium_src-af2fd777dae98b84279707490382002276dfc006.tar.bz2
Removes our homespun grow box and replaces it with the
standard widget. This may also fix some of our resizing issues. BUG=http://crbug.com/14663 TEST=The resizer widget should still work as expected. Review URL: http://codereview.chromium.org/149094 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19501 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/tab_strip_controller_unittest.mm')
-rw-r--r--chrome/browser/cocoa/tab_strip_controller_unittest.mm7
1 files changed, 1 insertions, 6 deletions
diff --git a/chrome/browser/cocoa/tab_strip_controller_unittest.mm b/chrome/browser/cocoa/tab_strip_controller_unittest.mm
index 7470bb9..71eeba5 100644
--- a/chrome/browser/cocoa/tab_strip_controller_unittest.mm
+++ b/chrome/browser/cocoa/tab_strip_controller_unittest.mm
@@ -96,11 +96,6 @@ class TabStripControllerTest : public testing::Test {
scoped_nsobject<NSView> tab_strip_;
};
-TEST_F(TabStripControllerTest, GrowBox) {
- // TODO(pinkerton): Creating a TabContents crashes an unrelated test, even
- // if you don't do anything with it. http://crbug.com/10899
-}
-
// Test adding and removing tabs and making sure that views get added to
// the tab strip.
TEST_F(TabStripControllerTest, AddRemoveTabs) {
@@ -127,7 +122,7 @@ TEST_F(TabStripControllerTest, RearrangeTabs) {
// if you don't do anything with it. http://crbug.com/10899
}
-// Test that changing the number of tabs broadcasts a
+// Test that changing the number of tabs broadcasts a
// kTabStripNumberOfTabsChanged notifiction.
TEST_F(TabStripControllerTest, Notifications) {
// TODO(pinkerton): Creating a TabContents crashes an unrelated test, even