| Index: content/browser/frame_host/render_frame_host_impl.cc
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
|
| index 73d22c6e4f90a43650356d536aa52824f3b729db..59165f41ef37828362cd43fb0baa9bccc9efc5c2 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.cc
|
| +++ b/content/browser/frame_host/render_frame_host_impl.cc
|
| @@ -652,12 +652,6 @@ bool RenderFrameHostImpl::CreateRenderFrame(int parent_routing_id,
|
| bool RenderFrameHostImpl::IsRenderFrameLive() {
|
| bool is_live = GetProcess()->HasConnection() && render_frame_created_;
|
|
|
| - // If the process is for an isolated guest (e.g. <webview>), rely on the
|
| - // RenderViewHost liveness check. Once https://crbug.com/492830 is fixed,
|
| - // this can be removed.
|
| - if (GetProcess()->IsIsolatedGuest())
|
| - is_live = render_view_host_->IsRenderViewLive();
|
| -
|
| // Sanity check: the RenderView should always be live if the RenderFrame is.
|
| DCHECK_IMPLIES(is_live, render_view_host_->IsRenderViewLive());
|
|
|
|
|