| 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 4a8e86b36ef797495dfc657c799570b1bfd82d86..173b4eda6757090736e4a38d275f82744a84106a 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
|
| @@ -292,12 +292,11 @@ bool RenderViewHostImpl::CreateRenderView(
|
| CHECK(main_frame_routing_id_ != MSG_ROUTING_NONE ||
|
| proxy_route_id != MSG_ROUTING_NONE);
|
|
|
| - // If swappedout:// is disabled, we should not set both main_frame_routing_id_
|
| - // and proxy_route_id. Log cases that this happens (without crashing) to
|
| - // track down https://crbug.com/574245.
|
| + // We should not set both main_frame_routing_id_ and proxy_route_id. Log
|
| + // cases that this happens (without crashing) to track down
|
| + // https://crbug.com/574245.
|
| // TODO(creis): Remove this once we've found the cause.
|
| - if (SiteIsolationPolicy::IsSwappedOutStateForbidden() &&
|
| - main_frame_routing_id_ != MSG_ROUTING_NONE &&
|
| + if (main_frame_routing_id_ != MSG_ROUTING_NONE &&
|
| proxy_route_id != MSG_ROUTING_NONE)
|
| base::debug::DumpWithoutCrashing();
|
|
|
|
|