diff options
author | samarth@chromium.org <samarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-13 22:26:28 +0000 |
---|---|---|
committer | samarth@chromium.org <samarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-13 22:26:28 +0000 |
commit | 48486582c8cc88d2cea6b1672a0b5e7c3fc70ce1 (patch) | |
tree | 1e6600bf0fe76f3c2d7f5c6c09faa5219e26ddfc | |
parent | 0cdbc98123f2887696949d5ef3ea548a29f0f094 (diff) | |
download | chromium_src-48486582c8cc88d2cea6b1672a0b5e7c3fc70ce1.zip chromium_src-48486582c8cc88d2cea6b1672a0b5e7c3fc70ce1.tar.gz chromium_src-48486582c8cc88d2cea6b1672a0b5e7c3fc70ce1.tar.bz2 |
InstantExtended: update tests for Instant Extended (part 4).
These tests will break when InstantExtended is turned on by default because of
the apps shortcut. There is already tests that cover cases when the apps
shortcut is shown, so just disable the shortcut for the broken tests.
(Note that this is split off from http://crrev.com/24733003 so we don't have a
single mega change that turns on Instant Extended.)
BUG=297915
R=asvitkine@chromium.org
Review URL: https://codereview.chromium.org/64533005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234930 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller_unittest.mm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller_unittest.mm b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller_unittest.mm index 892e5cc..5f0abf5 100644 --- a/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller_unittest.mm +++ b/chrome/browser/ui/cocoa/bookmarks/bookmark_bar_controller_unittest.mm @@ -1522,6 +1522,11 @@ TEST_F(BookmarkBarControllerTest, ShrinkOrHideView) { } TEST_F(BookmarkBarControllerTest, LastBookmarkResizeBehavior) { + // Hide the apps shortcut. + profile()->GetPrefs()->SetBoolean(prefs::kShowAppsShortcutInBookmarkBar, + false); + ASSERT_TRUE([bar_ appsPageShortcutButtonIsHidden]); + BookmarkModel* model = BookmarkModelFactory::GetForProfile(profile()); const BookmarkNode* root = model->bookmark_bar_node(); const std::string model_string("1b 2f:[ 2f1b 2f2b ] 3b "); @@ -1979,6 +1984,11 @@ TEST_F(BookmarkBarControllerDragDropTest, DropPositionIndicator) { const std::string model_string("1b 2f:[ 2f1b 2f2b 2f3b ] 3b 4b "); test::AddNodesFromModelString(model, root, model_string); + // Hide the apps shortcut. + profile()->GetPrefs()->SetBoolean(prefs::kShowAppsShortcutInBookmarkBar, + false); + ASSERT_TRUE([bar_ appsPageShortcutButtonIsHidden]); + // Validate initial model. std::string actualModel = test::ModelStringFromNode(root); EXPECT_EQ(model_string, actualModel); |