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..8be9251cfa256b5e29167034df03b3294e0b2dfb 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. |