diff options
Diffstat (limited to 'chrome_frame/custom_sync_call_context.h')
-rw-r--r-- | chrome_frame/custom_sync_call_context.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/chrome_frame/custom_sync_call_context.h b/chrome_frame/custom_sync_call_context.h index 9cbe3d6..6162213 100644 --- a/chrome_frame/custom_sync_call_context.h +++ b/chrome_frame/custom_sync_call_context.h @@ -85,15 +85,16 @@ class GetEnabledExtensionsContext class CreateExternalTabContext : public SyncMessageReplyDispatcher::SyncMessageCallContext { public: - typedef Tuple3<HWND, HWND, int> output_type; + typedef Tuple4<HWND, HWND, int, int> output_type; explicit CreateExternalTabContext(ChromeFrameAutomationClient* client) : client_(client) { } - void Completed(HWND chrome_window, HWND tab_window, int tab_handle) { + void Completed(HWND chrome_window, HWND tab_window, int tab_handle, + int session_id) { AutomationLaunchResult launch_result = client_->CreateExternalTabComplete(chrome_window, tab_window, - tab_handle); + tab_handle, session_id); client_->PostTask(FROM_HERE, NewRunnableMethod( client_.get(), |