Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(642)

Unified Diff: content/browser/renderer_host/render_widget_helper.h

Issue 1359163005: Remove surface_id from RenderWidget/RenderWidgetHost and friends (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@channel_creation_preempt
Patch Set: fix more tests Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 7f4ad7ea5e2e187aa105ec6dd3ea1e91386f8ed8..18576a41a66f11f72d6c9c29a5571fe9b1ddb578 100644
--- a/content/browser/renderer_host/render_widget_helper.h
+++ b/content/browser/renderer_host/render_widget_helper.h
@@ -105,13 +105,11 @@ class RenderWidgetHelper
base::ProcessHandle render_process,
int* route_id,
int* main_frame_route_id,
- int* surface_id,
SessionStorageNamespace* session_storage_namespace);
void CreateNewWidget(int opener_id,
blink::WebPopupType popup_type,
- int* route_id,
- int* surface_id);
- void CreateNewFullscreenWidget(int opener_id, int* route_id, int* surface_id);
+ int* route_id);
+ void CreateNewFullscreenWidget(int opener_id, int* route_id);
private:
friend class base::RefCountedThreadSafe<RenderWidgetHelper>;
@@ -133,13 +131,10 @@ class RenderWidgetHelper
// Called on the UI thread to finish creating a widget.
void OnCreateWidgetOnUI(int32 opener_id,
int32 route_id,
- int32 surface_id,
blink::WebPopupType popup_type);
// Called on the UI thread to create a fullscreen widget.
- void OnCreateFullscreenWidgetOnUI(int32 opener_id,
- int32 route_id,
- int32 surface_id);
+ void OnCreateFullscreenWidgetOnUI(int32 opener_id, int32 route_id);
// Called on the IO thread to resume a paused navigation in the network
// stack without transferring it to a new renderer process.
« no previous file with comments | « content/browser/renderer_host/render_view_host_unittest.cc ('k') | content/browser/renderer_host/render_widget_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698