| 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 850bdf56a48c29c36f94e49eb872e4040fd3e169..8970e615c8fc58d3169bc6621673c667ad2ab87f 100644
|
| --- a/content/browser/frame_host/navigation_controller_impl.cc
|
| +++ b/content/browser/frame_host/navigation_controller_impl.cc
|
| @@ -1688,7 +1688,7 @@ void NavigationControllerImpl::InsertOrReplaceEntry(
|
| DiscardNonCommittedEntriesInternal();
|
|
|
| int current_size = static_cast<int>(entries_.size());
|
| - DCHECK_IMPLIES(replace, current_size > 0);
|
| + DCHECK(!replace || (current_size > 0));
|
|
|
| if (current_size > 0) {
|
| // Prune any entries which are in front of the current entry.
|
|
|