diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-23 22:15:04 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-23 22:15:04 +0000 |
commit | 5a970843989662555dd8cc0ff17b34766d8e7b51 (patch) | |
tree | c1c0775d2bcdca904fc4e64d2adae2a46fe8aed6 /chrome/test/automation/tab_proxy.h | |
parent | ba80aa757802e51920657a5416e50139f146c6b0 (diff) | |
download | chromium_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.h | 6 |
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) |