| Index: content/browser/frame_host/navigation_handle_impl.cc
|
| diff --git a/content/browser/frame_host/navigation_handle_impl.cc b/content/browser/frame_host/navigation_handle_impl.cc
|
| index 47dc9a23962c4e42ceaede2f50cd7418f4283fe0..9fcf44e274af71ca7eef9746d3eafe5934c2f1da 100644
|
| --- a/content/browser/frame_host/navigation_handle_impl.cc
|
| +++ b/content/browser/frame_host/navigation_handle_impl.cc
|
| @@ -206,7 +206,8 @@ bool NavigationHandleImpl::IsSamePage() {
|
| }
|
|
|
| const net::HttpResponseHeaders* NavigationHandleImpl::GetResponseHeaders() {
|
| - return response_headers_.get();
|
| + DCHECK_GE(state_, WILL_REDIRECT_REQUEST);
|
| + return response_headers_.get();
|
| }
|
|
|
| bool NavigationHandleImpl::HasCommitted() {
|
|
|