| Index: content/browser/frame_host/navigation_controller_impl.cc
|
| diff --git a/content/browser/frame_host/navigation_controller_impl.cc b/content/browser/frame_host/navigation_controller_impl.cc
|
| index 690241bdb91c89732f9d49e2947edac80cb50a21..0995603d0b485c4622a977ead8f9d04898f11ac0 100644
|
| --- a/content/browser/frame_host/navigation_controller_impl.cc
|
| +++ b/content/browser/frame_host/navigation_controller_impl.cc
|
| @@ -39,7 +39,6 @@
|
|
|
| #include "base/bind.h"
|
| #include "base/command_line.h"
|
| -#include "base/debug/dump_without_crashing.h"
|
| #include "base/logging.h"
|
| #include "base/memory/ptr_util.h"
|
| #include "base/metrics/histogram_macros.h"
|
| @@ -904,11 +903,7 @@ bool NavigationControllerImpl::RendererDidNavigate(
|
|
|
| // All committed entries should have nonempty content state so WebKit doesn't
|
| // get confused when we go back to them (see the function for details).
|
| - if (!params.page_state.IsValid()) {
|
| - // Temporarily generate a minidump to diagnose https://crbug.com/568703.
|
| - base::debug::DumpWithoutCrashing();
|
| - NOTREACHED() << "Shouldn't see an empty PageState at commit.";
|
| - }
|
| + DCHECK(params.page_state.IsValid()) << "Shouldn't see an empty PageState.";
|
| NavigationEntryImpl* active_entry = GetLastCommittedEntry();
|
| active_entry->SetTimestamp(timestamp);
|
| active_entry->SetHttpStatusCode(params.http_status_code);
|
|
|