diff options
author | stoyan@chromium.org <stoyan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-08 16:26:11 +0000 |
---|---|---|
committer | stoyan@chromium.org <stoyan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-08 16:26:11 +0000 |
commit | b1c5563861d33febd3ba84dfac70c7b6921bda26 (patch) | |
tree | 8f7f9747e59f42cf0878edb8e599a3151e944045 /chrome/test/automation/automation_messages_internal.h | |
parent | 57fc471c6864dea93852742643e32d35a30c8559 (diff) | |
download | chromium_src-b1c5563861d33febd3ba84dfac70c7b6921bda26.zip chromium_src-b1c5563861d33febd3ba84dfac70c7b6921bda26.tar.gz chromium_src-b1c5563861d33febd3ba84dfac70c7b6921bda26.tar.bz2 |
ChromeFrame now uses host provided popup blocker.
It does not work in all scenarions since from Chrome side an empty string is passed as target url.
Note in IE6 "Tools/Popup Blocker" menu is not visible if ChromeFrame is the activedocument. Have to support some IOleCommandTarget command..
BUG=34823
Review URL: http://codereview.chromium.org/668168
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40897 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/automation/automation_messages_internal.h')
-rw-r--r-- | chrome/test/automation/automation_messages_internal.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/chrome/test/automation/automation_messages_internal.h b/chrome/test/automation/automation_messages_internal.h index 29bd287..6a18cd3 100644 --- a/chrome/test/automation/automation_messages_internal.h +++ b/chrome/test/automation/automation_messages_internal.h @@ -1091,14 +1091,14 @@ IPC_BEGIN_MESSAGES(Automation) IPC_MESSAGE_ROUTED1(AutomationMsg_RecordHistograms, std::vector<std::string> /* histogram_list */) - IPC_MESSAGE_ROUTED3(AutomationMsg_AttachExternalTab, - int /* tab_handle */, - intptr_t /* cookie */, - int /* disposition */) + IPC_MESSAGE_ROUTED2(AutomationMsg_AttachExternalTab, + int /* 'source' tab_handle */, + IPC::AttachExternalTabParams) // Sent when the automation client connects to an existing tab. - IPC_SYNC_MESSAGE_ROUTED1_3(AutomationMsg_ConnectExternalTab, - intptr_t /* cookie */, + IPC_SYNC_MESSAGE_ROUTED2_3(AutomationMsg_ConnectExternalTab, + uint64 /* cookie */, + bool /* allow/block tab*/, gfx::NativeWindow /* Tab container window */, gfx::NativeWindow /* Tab window */, int /* Handle to the new tab */) |