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

Unified Diff: chrome/browser/extensions/platform_app_browsertest.cc

Issue 9030017: Implement ShellWindow in Views. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebase Created 8 years, 11 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/sync/engine/syncer.cc » ('j') | chrome/browser/sync/engine/syncer.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | chrome/browser/sync/engine/syncer.cc » ('j') | chrome/browser/sync/engine/syncer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698