Index: chrome/browser/extensions/platform_app_browsertest.cc |
diff --git a/chrome/browser/extensions/platform_app_browsertest.cc b/chrome/browser/extensions/platform_app_browsertest.cc |
index 81270a943d8f381156a273838665278f0d82d247..2de2a124ac56d01392c93e0be1679ea3b1e33575 100644 |
--- a/chrome/browser/extensions/platform_app_browsertest.cc |
+++ b/chrome/browser/extensions/platform_app_browsertest.cc |
@@ -106,8 +106,8 @@ class PlatformAppBrowserTest : public ExtensionBrowserTest { |
} |
}; |
-// Disabled until shell windows are implemented for non-GTK toolkits. |
-#if defined(TOOLKIT_GTK) |
+// Disabled until shell windows are implemented for non-GTK, non-Views toolkits. |
+#if defined(TOOLKIT_GTK) | defined(TOOLKIT_VIEWS) |
#define MAYBE_OpenAppInShellContainer OpenAppInShellContainer |
#else |
#define MAYBE_OpenAppInShellContainer DISABLED_OpenAppInShellContainer |
@@ -121,8 +121,8 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, MAYBE_OpenAppInShellContainer) { |
ASSERT_EQ(0u, GetPlatformAppCount()); |
} |
-// Disabled until shell windows are implemented for non-GTK toolkits. |
-#if defined(TOOLKIT_GTK) |
+// Disabled until shell windows are implemented for non-GTK, non-Views toolkits. |
+#if defined(TOOLKIT_GTK) | defined(TOOLKIT_VIEWS) |
#define MAYBE_EmptyContextMenu EmptyContextMenu |
#else |
#define MAYBE_EmptyContextMenu DISABLED_EmptyContextMenu |
@@ -142,8 +142,8 @@ IN_PROC_BROWSER_TEST_F(PlatformAppBrowserTest, MAYBE_EmptyContextMenu) { |
ASSERT_FALSE(menu->menu_model().GetItemCount()); |
} |
-// Disabled until shell windows are implemented for non-GTK toolkits. |
-#if defined(TOOLKIT_GTK) |
+// Disabled until shell windows are implemented for non-GTK, non-Views toolkits. |
+#if defined(TOOLKIT_GTK) | defined(TOOLKIT_VIEWS) |
#define MAYBE_AppWithContextMenu AppWithContextMenu |
#else |
#define MAYBE_AppWithContextMenu DISABLED_AppWithContextMenu |