| Index: content/browser/renderer_host/render_widget_helper.h
|
| diff --git a/content/browser/renderer_host/render_widget_helper.h b/content/browser/renderer_host/render_widget_helper.h
|
| index 18576a41a66f11f72d6c9c29a5571fe9b1ddb578..fdef6b21871e6bdae3af8afe31357fd55b30f8b0 100644
|
| --- a/content/browser/renderer_host/render_widget_helper.h
|
| +++ b/content/browser/renderer_host/render_widget_helper.h
|
| @@ -99,13 +99,13 @@ class RenderWidgetHelper
|
|
|
| // IO THREAD ONLY -----------------------------------------------------------
|
|
|
| - void CreateNewWindow(
|
| - const ViewHostMsg_CreateWindow_Params& params,
|
| - bool no_javascript_access,
|
| - base::ProcessHandle render_process,
|
| - int* route_id,
|
| - int* main_frame_route_id,
|
| - SessionStorageNamespace* session_storage_namespace);
|
| + void CreateNewWindow(const ViewHostMsg_CreateWindow_Params& params,
|
| + bool no_javascript_access,
|
| + base::ProcessHandle render_process,
|
| + int32* route_id,
|
| + int32* main_frame_route_id,
|
| + int32* main_frame_widget_route_id,
|
| + SessionStorageNamespace* session_storage_namespace);
|
| void CreateNewWidget(int opener_id,
|
| blink::WebPopupType popup_type,
|
| int* route_id);
|
| @@ -119,11 +119,11 @@ class RenderWidgetHelper
|
| ~RenderWidgetHelper();
|
|
|
| // Called on the UI thread to finish creating a window.
|
| - void OnCreateWindowOnUI(
|
| - const ViewHostMsg_CreateWindow_Params& params,
|
| - int route_id,
|
| - int main_frame_route_id,
|
| - SessionStorageNamespace* session_storage_namespace);
|
| + void OnCreateWindowOnUI(const ViewHostMsg_CreateWindow_Params& params,
|
| + int32 route_id,
|
| + int32 main_frame_route_id,
|
| + int32 main_frame_widget_route_id,
|
| + SessionStorageNamespace* session_storage_namespace);
|
|
|
| // Called on the IO thread after a window was created on the UI thread.
|
| void OnResumeRequestsForView(int route_id);
|
|
|