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

Unified Diff: chrome/browser/browser_browsertest.cc

Issue 5589001: Change drag and drop prefs on the right browser window. (Closed) Base URL: http://git.chromium.org/git/chromium.git
Patch Set: improve test comments. Created 10 years 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/browser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser_browsertest.cc
diff --git a/chrome/browser/browser_browsertest.cc b/chrome/browser/browser_browsertest.cc
index 64fa35ca27fcf9a7dad0f195f285b4cabdb69ba6..b0da49cf8bfa5a8ca8ee91ffd06f0fc8eec295aa 100644
--- a/chrome/browser/browser_browsertest.cc
+++ b/chrome/browser/browser_browsertest.cc
@@ -369,6 +369,55 @@ IN_PROC_BROWSER_TEST_F(BrowserTest, CommandCreateAppShortcutInvalid) {
ui_test_utils::NavigateToURL(browser(), blank_url);
EXPECT_FALSE(command_updater->IsCommandEnabled(IDC_CREATE_SHORTCUTS));
}
+
+// Change a tab into an application window.
+IN_PROC_BROWSER_TEST_F(BrowserTest, ConvertTabToAppShortcut) {
+ ASSERT_TRUE(test_server()->Start());
+ GURL http_url(test_server()->GetURL(""));
+ ASSERT_TRUE(http_url.SchemeIs(chrome::kHttpScheme));
+
+ ASSERT_EQ(1, browser()->tab_count());
+ TabContents* initial_tab = browser()->GetTabContentsAt(0);
+ TabContents* app_tab = browser()->AddSelectedTabWithURL(
+ http_url, PageTransition::TYPED)->tab_contents();
+ ASSERT_EQ(2, browser()->tab_count());
+ ASSERT_EQ(1u, BrowserList::GetBrowserCount(browser()->profile()));
+
+ // Normal tabs should accept load drops.
+ EXPECT_TRUE(initial_tab->GetMutableRendererPrefs()->can_accept_load_drops);
+ EXPECT_TRUE(app_tab->GetMutableRendererPrefs()->can_accept_load_drops);
+
+ // Turn |app_tab| into a tab in an app panel.
+ browser()->ConvertContentsToApplication(app_tab);
+
+ // The launch should have created a new browser.
+ ASSERT_EQ(2u, BrowserList::GetBrowserCount(browser()->profile()));
+
+ // Find the new browser.
+ Browser* app_browser = NULL;
+ for (BrowserList::const_iterator i = BrowserList::begin();
+ i != BrowserList::end() && !app_browser; ++i) {
+ if (*i != browser())
+ app_browser = *i;
+ }
+ ASSERT_TRUE(app_browser);
+
+ // Check that the tab contents is in the new browser, and not in the old.
+ ASSERT_EQ(1, browser()->tab_count());
+ ASSERT_EQ(initial_tab, browser()->GetTabContentsAt(0));
+
+ // Check that the appliaction browser has a single tab, and that tab contains
+ // the content that we app-ified.
+ ASSERT_EQ(1, app_browser->tab_count());
+ ASSERT_EQ(app_tab, app_browser->GetTabContentsAt(0));
+
+ // Normal tabs should accept load drops.
+ EXPECT_TRUE(initial_tab->GetMutableRendererPrefs()->can_accept_load_drops);
+
+ // The tab in an aopp window should not.
+ EXPECT_FALSE(app_tab->GetMutableRendererPrefs()->can_accept_load_drops);
+}
+
#endif // !defined(OS_MACOSX)
// Test RenderView correctly send back favicon url for web page that redirects
« no previous file with comments | « no previous file | chrome/browser/ui/browser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698