diff options
author | hansl@google.com <hansl@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-28 16:05:36 +0000 |
---|---|---|
committer | hansl@google.com <hansl@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-28 16:05:36 +0000 |
commit | d57b6ab5930b827b56d412b1d334620c91e8cdbd (patch) | |
tree | 7ec5d9867db431d3a89092fcebd2327078c64c16 /chrome_frame/cfproxy.h | |
parent | 8073fb0ca593e537c75d1b40b7206b4f58434d86 (diff) | |
download | chromium_src-d57b6ab5930b827b56d412b1d334620c91e8cdbd.zip chromium_src-d57b6ab5930b827b56d412b1d334620c91e8cdbd.tar.gz chromium_src-d57b6ab5930b827b56d412b1d334620c91e8cdbd.tar.bz2 |
The ChromeFrame objects now provides an unfrozen interface called IChromeFramePrivate. This interface provides a GetSessionId() which returns the ID used by Chrome in its Tab javascript object.
Review URL: http://codereview.chromium.org/3541017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64252 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/cfproxy.h')
-rw-r--r-- | chrome_frame/cfproxy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/cfproxy.h b/chrome_frame/cfproxy.h index bfcc998..51c2153 100644 --- a/chrome_frame/cfproxy.h +++ b/chrome_frame/cfproxy.h @@ -157,7 +157,7 @@ class ChromeProxyDelegate { // Sync message responses. virtual void Completed_CreateTab(bool success, HWND chrome_wnd, - HWND tab_window, int tab_handle) = 0; + HWND tab_window, int tab_handle, int session_id) = 0; virtual void Completed_ConnectToTab(bool success, HWND chrome_window, HWND tab_window, int tab_handle) = 0; virtual void Completed_Navigate(bool success, |