mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-11 09:30:43 +01:00
- Windows: VS2015 Update 2 is now the minimum version requirement for linking cef_sandbox from official build binary distributions.
14 lines
562 B
Diff
14 lines
562 B
Diff
diff --git content/browser/renderer_host/render_view_host_impl.cc content/browser/renderer_host/render_view_host_impl.cc
|
|
index 5326b36457f2..694aff3c7144 100644
|
|
--- content/browser/renderer_host/render_view_host_impl.cc
|
|
+++ content/browser/renderer_host/render_view_host_impl.cc
|
|
@@ -584,6 +584,8 @@ bool RenderViewHostImpl::IsRenderViewLive() {
|
|
}
|
|
|
|
void RenderViewHostImpl::SetBackgroundOpaque(bool opaque) {
|
|
+ if (!GetWidget()->GetAssociatedFrameWidget().is_bound())
|
|
+ return;
|
|
GetWidget()->GetAssociatedFrameWidget()->SetBackgroundOpaque(opaque);
|
|
}
|
|
|