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

Unified Diff: content/browser/renderer_host/render_view_host_impl.cc

Issue 2369793002: WIP: Propagate SurfaceID up window tree hierarchy
Patch Set: Fix input events: EventDispatcher ignores container windows Created 4 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_view_host_impl.cc
diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc
index 6d4e908768ef7c67faf0459c529671e9dbc690ce..9f52f642fdeb81b1845bf443183d1ea2ea5aef21 100644
--- a/content/browser/renderer_host/render_view_host_impl.cc
+++ b/content/browser/renderer_host/render_view_host_impl.cc
@@ -380,8 +380,8 @@ bool RenderViewHostImpl::CreateRenderView(
// If the RWHV has not yet been set, the surface ID namespace will get
// passed down by the call to SetView().
if (GetWidget()->GetView()) {
- Send(new ViewMsg_SetSurfaceClientId(
- GetRoutingID(), GetWidget()->GetView()->GetSurfaceClientId()));
+ Send(new ViewMsg_SetFrameSinkId(GetRoutingID(),
+ GetWidget()->GetView()->GetFrameSinkId()));
}
// If it's enabled, tell the renderer to set up the Javascript bindings for

Powered by Google App Engine
This is Rietveld 408576698