diff --git a/libcef/browser/osr/web_contents_view_osr.cc b/libcef/browser/osr/web_contents_view_osr.cc index 3d3649158..2cafecf92 100644 --- a/libcef/browser/osr/web_contents_view_osr.cc +++ b/libcef/browser/osr/web_contents_view_osr.cc @@ -29,11 +29,7 @@ void CefWebContentsViewOSR::WebContentsCreated( DCHECK(!web_contents_); web_contents_ = web_contents; - auto host = web_contents_->GetRenderViewHost(); - CefRenderWidgetHostViewOSR* view = - static_cast(host->GetWidget()->GetView()); - if (view) - view->InstallTransparency(); + RenderViewReady(); } gfx::NativeView CefWebContentsViewOSR::GetNativeView() const { @@ -124,7 +120,15 @@ CefWebContentsViewOSR::CreateViewForChildWidget( void CefWebContentsViewOSR::SetPageTitle(const base::string16& title) {} -void CefWebContentsViewOSR::RenderViewReady() {} +void CefWebContentsViewOSR::RenderViewReady() { + if (web_contents_) { + auto host = web_contents_->GetRenderViewHost(); + CefRenderWidgetHostViewOSR* view = + static_cast(host->GetWidget()->GetView()); + if (view) + view->InstallTransparency(); + } +} void CefWebContentsViewOSR::RenderViewHostChanged( content::RenderViewHost* old_host,