summaryrefslogtreecommitdiffstats
path: root/chrome/common/automation_messages_internal.h
diff options
context:
space:
mode:
authorjoshia@google.com <joshia@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-29 20:38:24 +0000
committerjoshia@google.com <joshia@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-29 20:38:24 +0000
commit326d3b7eb07359b5a88619f84286e912d4c6e531 (patch)
treef77644aae9ae1d6f21b464ce4a8b3dd9aa45e431 /chrome/common/automation_messages_internal.h
parente0af339c91f198008fb80921a6f63bbea93e312d (diff)
downloadchromium_src-326d3b7eb07359b5a88619f84286e912d4c6e531.zip
chromium_src-326d3b7eb07359b5a88619f84286e912d4c6e531.tar.gz
chromium_src-326d3b7eb07359b5a88619f84286e912d4c6e531.tar.bz2
Chrome frame support for resizing popup windows
Add necesssary plumbing for window.resizeTo to work within Chrome Frame. BUG=76649 TEST=create a popup window using window.open and resize it using window.resizeTo. Sample test page is here: http://testopenpopup.comuf.com/popUp.html Review URL: http://codereview.chromium.org/6748010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79737 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/automation_messages_internal.h')
-rw-r--r--chrome/common/automation_messages_internal.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/common/automation_messages_internal.h b/chrome/common/automation_messages_internal.h
index 5ebf730..573b668 100644
--- a/chrome/common/automation_messages_internal.h
+++ b/chrome/common/automation_messages_internal.h
@@ -1459,3 +1459,13 @@ IPC_SYNC_MESSAGE_CONTROL1_2(AutomationMsg_GetParentBrowserOfTab,
int /* tab handle */,
int /* browser handle */,
bool /* success */)
+
+// This message is an outgoing message from Chrome to an external host.
+// It is a notification that a popup window position or dimentions have
+// changed
+// Request:
+// gfx::Rect - the bounds of the window
+// Response:
+// None expected
+IPC_MESSAGE_ROUTED1(AutomationMsg_MoveWindow,
+ gfx::Rect /* window position and dimentions */)