diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-09 20:00:13 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-09 20:00:13 +0000 |
commit | ef5ff1b40f1024d834620f5cede62dfd4aea6e0c (patch) | |
tree | 3935dae6b7f1ab45c01bc8f66d6bfee7338d9a9a /chrome/browser/blocked_popup_container_interactive_uitest.cc | |
parent | 0bbb1b1f9842366babce756ab2f1713832be63de (diff) | |
download | chromium_src-ef5ff1b40f1024d834620f5cede62dfd4aea6e0c.zip chromium_src-ef5ff1b40f1024d834620f5cede62dfd4aea6e0c.tar.gz chromium_src-ef5ff1b40f1024d834620f5cede62dfd4aea6e0c.tar.bz2 |
Fix to use FilePath version of PathService::Get.
BUG=None
TEST=None
Original Review URL: http://codereview.chromium.org/174189
Patch from Thiago Farina <thiago.farina@gmail.com>.
Review URL: http://codereview.chromium.org/193047
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25778 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/blocked_popup_container_interactive_uitest.cc')
-rw-r--r-- | chrome/browser/blocked_popup_container_interactive_uitest.cc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/chrome/browser/blocked_popup_container_interactive_uitest.cc b/chrome/browser/blocked_popup_container_interactive_uitest.cc index 57cb771..c43be7d 100644 --- a/chrome/browser/blocked_popup_container_interactive_uitest.cc +++ b/chrome/browser/blocked_popup_container_interactive_uitest.cc @@ -37,10 +37,10 @@ class BlockedPopupContainerInteractiveTest : public UITest { ASSERT_TRUE(tab_.get()); } - void NavigateMainTabTo(const std::wstring& file_name) { + void NavigateMainTabTo(const std::string& file_name) { FilePath filename(test_data_directory_); filename = filename.AppendASCII("constrained_files"); - filename = filename.Append(FilePath::FromWStringHack(file_name)); + filename = filename.AppendASCII(file_name); ASSERT_TRUE(tab_->NavigateToURL(net::FilePathToFileURL(filename))); } @@ -62,7 +62,7 @@ class BlockedPopupContainerInteractiveTest : public UITest { }; TEST_F(BlockedPopupContainerInteractiveTest, TestOpenAndResizeTo) { - NavigateMainTabTo(L"constrained_window_onload_resizeto.html"); + NavigateMainTabTo("constrained_window_onload_resizeto.html"); SimulateClickInCenterOf(window_); ASSERT_TRUE(automation()->WaitForWindowCountToBecome(2, 1000)); @@ -140,7 +140,7 @@ bool ParseCountOutOfTitle(const std::wstring& title, int* output) { // Tests that in the window.open() equivalent of a fork bomb, we stop building // windows. TEST_F(BlockedPopupContainerInteractiveTest, DontSpawnEndlessPopups) { - NavigateMainTabTo(L"infinite_popups.html"); + NavigateMainTabTo("infinite_popups.html"); SimulateClickInCenterOf(window_); ASSERT_TRUE(automation()->WaitForWindowCountToBecome(2, 1000)); @@ -183,7 +183,7 @@ TEST_F(BlockedPopupContainerInteractiveTest, DontSpawnEndlessPopups) { // Make sure that we refuse to close windows when a constrained popup is // displayed. TEST_F(BlockedPopupContainerInteractiveTest, WindowOpenWindowClosePopup) { - NavigateMainTabTo(L"openclose_main.html"); + NavigateMainTabTo("openclose_main.html"); SimulateClickInCenterOf(window_); ASSERT_TRUE(automation()->WaitForWindowCountToBecome(2, 5000)); @@ -202,7 +202,7 @@ TEST_F(BlockedPopupContainerInteractiveTest, WindowOpenWindowClosePopup) { } TEST_F(BlockedPopupContainerInteractiveTest, BlockAlertFromBlockedPopup) { - NavigateMainTabTo(L"block_alert.html"); + NavigateMainTabTo("block_alert.html"); // Wait for there to be an app modal dialog (and fail if it's shown). ASSERT_FALSE(automation()->WaitForAppModalDialog(4000)); @@ -219,7 +219,7 @@ TEST_F(BlockedPopupContainerInteractiveTest, BlockAlertFromBlockedPopup) { } TEST_F(BlockedPopupContainerInteractiveTest, ShowAlertFromNormalPopup) { - NavigateMainTabTo(L"show_alert.html"); + NavigateMainTabTo("show_alert.html"); SimulateClickInCenterOf(window_); ASSERT_TRUE(automation()->WaitForWindowCountToBecome(2, 5000)); @@ -246,7 +246,7 @@ TEST_F(BlockedPopupContainerInteractiveTest, ShowAlertFromNormalPopup) { // Make sure that window focus works while creating a popup window so that we // don't TEST_F(BlockedPopupContainerInteractiveTest, DontBreakOnBlur) { - NavigateMainTabTo(L"window_blur_test.html"); + NavigateMainTabTo("window_blur_test.html"); SimulateClickInCenterOf(window_); // Wait for the popup window to open. |