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

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: comments 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/ui/extensions/shell_window.cc » ('j') | no next file with comments »
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..a18576e3900cfcac05fd81ffe42a1c9811d3a6ec 100644
--- a/chrome/browser/extensions/platform_app_browsertest.cc
+++ b/chrome/browser/extensions/platform_app_browsertest.cc
@@ -50,6 +50,10 @@ class PlatformAppBrowserTest : public ExtensionBrowserTest {
protected:
void LoadAndLaunchPlatformApp(const char* name) {
+ ui_test_utils::WindowedNotificationObserver app_loaded_observer(
+ content::NOTIFICATION_LOAD_COMPLETED_MAIN_FRAME,
+ content::NotificationService::AllSources());
+
web_app::SetDisableShortcutCreationForTests(true);
EXPECT_TRUE(LoadExtension(test_data_dir_.AppendASCII("platform_apps").
AppendASCII(name)));
@@ -68,6 +72,8 @@ class PlatformAppBrowserTest : public ExtensionBrowserTest {
GURL(),
NEW_WINDOW);
+ app_loaded_observer.Wait();
+
// Now we have a new platform app running.
EXPECT_EQ(platform_app_count + 1, GetPlatformAppCount());
}
@@ -106,8 +112,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 +127,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 +148,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/ui/extensions/shell_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698