Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Unified Diff: chrome/browser/extensions/api/management/management_apitest.cc

Issue 1299823002: Disable new bookmark apps on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing reviewer feedback Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/api/management/management_apitest.cc
diff --git a/chrome/browser/extensions/api/management/management_apitest.cc b/chrome/browser/extensions/api/management/management_apitest.cc
index ee272742ab734789367bd508271ccd38caedacf4..91d0b66bab500b2881b0304767cac0c9099e2549 100644
--- a/chrome/browser/extensions/api/management/management_apitest.cc
+++ b/chrome/browser/extensions/api/management/management_apitest.cc
@@ -316,9 +316,9 @@ IN_PROC_BROWSER_TEST_F(ExtensionManagementApiTest, MAYBE_LaunchTabApp) {
unsigned expected_browser_count = 2;
#if defined(OS_MACOSX)
- // With the new Bookmark Apps, Mac currently has standalone browser
- // windows disabled for apps, so it will add to the tabstrip instead.
- EXPECT_TRUE(extensions::util::IsNewBookmarkAppsEnabled());
+ // Without the new Bookmark Apps, Mac has no way of making standalone browser
+ // windows for apps, so it will add to the tabstrip instead.
+ EXPECT_FALSE(extensions::util::IsNewBookmarkAppsEnabled());
expected_browser_count = 1;
ASSERT_EQ(2, browser()->tab_strip_model()->count());
#endif
« no previous file with comments | « no previous file | chrome/browser/extensions/extension_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698