| Index: chrome/test/automation/tab_proxy.cc
|
| ===================================================================
|
| --- chrome/test/automation/tab_proxy.cc (revision 26702)
|
| +++ chrome/test/automation/tab_proxy.cc (working copy)
|
| @@ -665,28 +665,10 @@
|
| }
|
|
|
| #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() {
|
|
|