| 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 26bcc63fa8e58fc8673879491aacc14564144169..e023abd32c990aade7718c35539b4fba39c4c85f 100644
|
| --- a/content/browser/frame_host/navigation_handle_impl.cc
|
| +++ b/content/browser/frame_host/navigation_handle_impl.cc
|
| @@ -4,8 +4,6 @@
|
|
|
| #include "content/browser/frame_host/navigation_handle_impl.h"
|
|
|
| -#include <utility>
|
| -
|
| #include "base/debug/dump_without_crashing.h"
|
| #include "base/logging.h"
|
| #include "content/browser/browsing_data/clear_site_data_throttle.h"
|
| @@ -371,6 +369,15 @@ NavigationData* NavigationHandleImpl::GetNavigationData() {
|
| return navigation_data_.get();
|
| }
|
|
|
| +bool NavigationHandleImpl::HasNetworkResponseStarted() {
|
| + return state_ >= WILL_PROCESS_RESPONSE;
|
| +}
|
| +
|
| +const GlobalRequestID& NavigationHandleImpl::GetGlobalRequestID() {
|
| + DCHECK_GE(state_, WILL_PROCESS_RESPONSE);
|
| + return request_id_;
|
| +}
|
| +
|
| void NavigationHandleImpl::InitServiceWorkerHandle(
|
| ServiceWorkerContextWrapper* service_worker_context) {
|
| DCHECK(IsBrowserSideNavigationEnabled());
|
|
|