| Index: content/browser/web_contents/web_contents_impl.cc
|
| diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
|
| index 48ca4f7da8d4f4e908d64c84fea85bd2d04a36dc..54a733eb163cf4165cebf0c2ad42255141c200eb 100644
|
| --- a/content/browser/web_contents/web_contents_impl.cc
|
| +++ b/content/browser/web_contents/web_contents_impl.cc
|
| @@ -4614,11 +4614,7 @@ void WebContentsImpl::UpdateStateForFrame(RenderFrameHost* render_frame_host,
|
| if (page_state == frame_entry->page_state())
|
| return; // Nothing to update.
|
|
|
| - if (!page_state.IsValid()) {
|
| - // Temporarily generate a minidump to diagnose https://crbug.com/568703.
|
| - base::debug::DumpWithoutCrashing();
|
| - NOTREACHED() << "Shouldn't set an empty PageState.";
|
| - }
|
| + DCHECK(page_state.IsValid()) << "Shouldn't set an empty PageState.";
|
|
|
| // The document_sequence_number and item_sequence_number recorded in the
|
| // FrameNavigationEntry should not differ from the one coming with the update,
|
|
|