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_frame/chrome_frame_delegate.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_frame/chrome_frame_delegate.h')
-rw-r--r-- | chrome_frame/chrome_frame_delegate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome_frame/chrome_frame_delegate.h b/chrome_frame/chrome_frame_delegate.h index d577dfd..a235bcd 100644 --- a/chrome_frame/chrome_frame_delegate.h +++ b/chrome_frame/chrome_frame_delegate.h @@ -110,8 +110,8 @@ class ChromeFrameDelegateImpl : public ChromeFrameDelegate { virtual void OnDownloadRequestInHost(int tab_handle, int request_id) {} virtual void OnSetCookieAsync(int tab_handle, const GURL& url, const std::string& cookie) {} - virtual void OnAttachExternalTab(int tab_handle, intptr_t cookie, - int disposition) {} + virtual void OnAttachExternalTab(int tab_handle, + const IPC::AttachExternalTabParams& attach_params) {} virtual void OnGoToHistoryEntryOffset(int tab_handle, int offset) {} virtual void OnGetCookiesFromHost(int tab_handle, const GURL& url, |