From 8dd404bbb05b99e7ee13b4e70899ebbcaeb3e8fb Mon Sep 17 00:00:00 2001 From: "estade@chromium.org" Date: Tue, 22 Sep 2009 19:57:24 +0000 Subject: Automated ui test porting + cleanup: - Change POINTs to gfx::Point - Get rid of 2 unused automation messages (the messages themselves are staying for now so we don't mess with the reference build) -- add new automation messages to replace GetWindowHWND, which is not portable - re-enable automated_ui_test_interactive_test (it seems to have been dropped when we converted to gyp) - compile additional tests on linux (they don't pass, so they are disabled) - stub out linux tab dragging automation implementation (browser side) - delete various cruft BUG=19758 Review URL: http://codereview.chromium.org/211033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26846 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/test/automation/tab_proxy.cc | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'chrome/test/automation/tab_proxy.cc') diff --git a/chrome/test/automation/tab_proxy.cc b/chrome/test/automation/tab_proxy.cc index 85ab3fc..96126a3 100644 --- a/chrome/test/automation/tab_proxy.cc +++ b/chrome/test/automation/tab_proxy.cc @@ -665,28 +665,10 @@ bool TabProxy::OverrideEncoding(const std::string& encoding) { } #if defined(OS_WIN) -void TabProxy::Reposition(HWND window, HWND window_insert_after, int left, - int top, int width, int height, int flags, - HWND parent_window) { - - IPC::Reposition_Params params = {0}; - params.window = window; - params.window_insert_after = window_insert_after; - params.left = left; - params.top = top; - params.width = width; - params.height = height; - params.flags = flags; - params.set_parent = (::IsWindow(parent_window) ? true : false); - params.parent_window = parent_window; - sender_->Send(new AutomationMsg_TabReposition(0, handle_, params)); -} - void TabProxy::SendContextMenuCommand(int selected_command) { sender_->Send(new AutomationMsg_ForwardContextMenuCommandToChrome( 0, handle_, selected_command)); } - #endif // defined(OS_WIN) void TabProxy::SelectAll() { -- cgit v1.1