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 f42cb62490197a1e094cf2ddff6c558725216f48..f1c2725a1d0915b1f42882a5a2b2f35161e35c0c 100644 |
--- a/content/browser/renderer_host/render_widget_helper.h |
+++ b/content/browser/renderer_host/render_widget_helper.h |
@@ -99,14 +99,14 @@ 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, |
- int* surface_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, |
+ int32* surface_id, |
+ SessionStorageNamespace* session_storage_namespace); |
void CreateNewWidget(int opener_id, |
blink::WebPopupType popup_type, |
int* route_id, |
@@ -121,11 +121,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); |