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

Unified Diff: content/browser/frame_host/cross_process_frame_connector.cc

Issue 2633303003: Clean up RenderWidgetHostView(ChildFrame and Guest) compositing code (Closed)
Patch Set: c Created 3 years, 11 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/frame_host/cross_process_frame_connector.cc
diff --git a/content/browser/frame_host/cross_process_frame_connector.cc b/content/browser/frame_host/cross_process_frame_connector.cc
index 9a41e0c64c35b7f21e556e5e9127dbcc7ca61258..b56680ddfbc2a0466ab21b1467d4c4e2b4b5abca 100644
--- a/content/browser/frame_host/cross_process_frame_connector.cc
+++ b/content/browser/frame_host/cross_process_frame_connector.cc
@@ -89,13 +89,10 @@ void CrossProcessFrameConnector::RenderProcessGone() {
}
void CrossProcessFrameConnector::SetChildFrameSurface(
- const cc::SurfaceId& surface_id,
- const gfx::Size& frame_size,
- float scale_factor,
+ const cc::SurfaceInfo& surface_info,
const cc::SurfaceSequence& sequence) {
frame_proxy_in_parent_renderer_->Send(new FrameMsg_SetChildFrameSurface(
- frame_proxy_in_parent_renderer_->GetRoutingID(), surface_id, frame_size,
- scale_factor, sequence));
+ frame_proxy_in_parent_renderer_->GetRoutingID(), surface_info, sequence));
}
void CrossProcessFrameConnector::OnSatisfySequence(

Powered by Google App Engine
This is Rietveld 408576698