| Index: chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc
|
| diff --git a/chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc b/chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc
|
| index 782b7d2b4db89d6651794f5a067b70d9f32d3f72..d4816978a076ec15764272241dc2b37f60ab1bfe 100644
|
| --- a/chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc
|
| +++ b/chrome/browser/ui/views/bookmarks/bookmark_bar_view_unittest.cc
|
| @@ -347,12 +347,12 @@ TEST_F(BookmarkBarViewTest, ManagedShowAppsShortcutInBookmarksBar) {
|
|
|
| // Hide the apps shortcut by policy, via the managed pref.
|
| prefs->SetManagedPref(bookmarks::prefs::kShowAppsShortcutInBookmarkBar,
|
| - new base::FundamentalValue(false));
|
| + new base::Value(false));
|
| EXPECT_FALSE(test_helper_->apps_page_shortcut()->visible());
|
|
|
| // And try showing it via policy too.
|
| prefs->SetManagedPref(bookmarks::prefs::kShowAppsShortcutInBookmarkBar,
|
| - new base::FundamentalValue(true));
|
| + new base::Value(true));
|
| EXPECT_TRUE(test_helper_->apps_page_shortcut()->visible());
|
| }
|
| #endif
|
|
|