summaryrefslogtreecommitdiffstats
path: root/chrome/test/automation/tab_proxy.h
diff options
context:
space:
mode:
authorananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-23 22:15:04 +0000
committerananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-23 22:15:04 +0000
commit5a970843989662555dd8cc0ff17b34766d8e7b51 (patch)
treec1c0775d2bcdca904fc4e64d2adae2a46fe8aed6 /chrome/test/automation/tab_proxy.h
parentba80aa757802e51920657a5416e50139f146c6b0 (diff)
downloadchromium_src-5a970843989662555dd8cc0ff17b34766d8e7b51.zip
chromium_src-5a970843989662555dd8cc0ff17b34766d8e7b51.tar.gz
chromium_src-5a970843989662555dd8cc0ff17b34766d8e7b51.tar.bz2
Reinstating the AutomationMsg_TabReposition message and related stuff which is used by ChromeFrame. These were
incorrectly removed under the assumption that they are unused. This should fix the ChromeFrame build issues. TBR=amit,estade Review URL: http://codereview.chromium.org/220022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27003 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation/tab_proxy.h')
-rw-r--r--chrome/test/automation/tab_proxy.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/test/automation/tab_proxy.h b/chrome/test/automation/tab_proxy.h
index aea80df..7f56932 100644
--- a/chrome/test/automation/tab_proxy.h
+++ b/chrome/test/automation/tab_proxy.h
@@ -310,6 +310,12 @@ class TabProxy : public AutomationResourceProxy {
bool OverrideEncoding(const std::string& encoding);
#if defined(OS_WIN)
+ // Resizes the tab window.
+ // The parent_window parameter allows a parent to be specified for the window
+ // passed in.
+ void Reposition(HWND window, HWND window_insert_after, int left, int top,
+ int width, int height, int flags, HWND parent_window);
+
// Sends the selected context menu command to the chrome instance
void SendContextMenuCommand(int selected_command);
#endif // defined(OS_WIN)