| Index: content/browser/frame_host/navigation_request.cc
|
| diff --git a/content/browser/frame_host/navigation_request.cc b/content/browser/frame_host/navigation_request.cc
|
| index 171b1b5a510d3545be73887ad9d262fffa1a13b1..4fb2eb9a8f53c313ee80d2563fa0f95b27f8224c 100644
|
| --- a/content/browser/frame_host/navigation_request.cc
|
| +++ b/content/browser/frame_host/navigation_request.cc
|
| @@ -158,7 +158,7 @@ NavigationRequest::NavigationRequest(
|
| restore_type_(NavigationEntryImpl::RESTORE_NONE),
|
| is_view_source_(false),
|
| bindings_(NavigationEntryImpl::kInvalidBindings) {
|
| - DCHECK_IMPLIES(browser_initiated, entry != nullptr && frame_entry != nullptr);
|
| + DCHECK(!browser_initiated || (entry != nullptr && frame_entry != nullptr));
|
| if (browser_initiated) {
|
| // TODO(clamy): use the FrameNavigationEntry for the source SiteInstance
|
| // once it has been moved from the NavigationEntry.
|
|
|