summaryrefslogtreecommitdiffstats
path: root/chrome/test/automation
diff options
context:
space:
mode:
authortommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-04 21:52:48 +0000
committertommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-04 21:52:48 +0000
commit7e50312540228f37a95ecff34c9fba6ba3699889 (patch)
tree34c2617652b916c2b77ef338654da6754031b77d /chrome/test/automation
parent5fac9623175cb7bda27ccc079ea19b3f90471149 (diff)
downloadchromium_src-7e50312540228f37a95ecff34c9fba6ba3699889.zip
chromium_src-7e50312540228f37a95ecff34c9fba6ba3699889.tar.gz
chromium_src-7e50312540228f37a95ecff34c9fba6ba3699889.tar.bz2
Explicitly removing WS_POPUP after initialization so that users of the ExternalTabContainer class can control whether or not it's set.
Review URL: http://codereview.chromium.org/19768 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@9174 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation')
-rw-r--r--chrome/test/automation/automation_proxy_uitest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/automation/automation_proxy_uitest.cc b/chrome/test/automation/automation_proxy_uitest.cc
index 212100a..acdf819 100644
--- a/chrome/test/automation/automation_proxy_uitest.cc
+++ b/chrome/test/automation/automation_proxy_uitest.cc
@@ -749,7 +749,7 @@ bool ExternalTabHandler(HWND external_tab_window) {
TEST_F(AutomationProxyVisibleTest, CreateExternalTab) {
HWND external_tab_container = NULL;
scoped_ptr<TabProxy> tab(automation()->CreateExternalTab(
- NULL, gfx::Rect(), 0, &external_tab_container));
+ NULL, gfx::Rect(), WS_POPUP, &external_tab_container));
EXPECT_TRUE(tab != NULL);
EXPECT_NE(FALSE, ::IsWindow(external_tab_container));
if (tab != NULL) {