| 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 da20a1ee15fb52f76dc45c63fd26058e4f232110..a67f71cbca45423218f8038bfebde826794017b5 100644
|
| --- a/content/browser/frame_host/navigation_handle_impl.cc
|
| +++ b/content/browser/frame_host/navigation_handle_impl.cc
|
| @@ -270,6 +270,7 @@ NavigationHandleImpl::CallWillStartRequestForTesting(
|
|
|
| WillStartRequest(method, resource_request_body, sanitized_referrer,
|
| has_user_gesture, transition, is_external_protocol,
|
| + REQUEST_CONTEXT_TYPE_LOCATION,
|
| base::Bind(&UpdateThrottleCheckResult, &result));
|
|
|
| // Reset the callback to ensure it will not be called later.
|
| @@ -305,6 +306,7 @@ void NavigationHandleImpl::WillStartRequest(
|
| bool has_user_gesture,
|
| ui::PageTransition transition,
|
| bool is_external_protocol,
|
| + RequestContextType fetch_request_context_type,
|
| const ThrottleChecksFinishedCallback& callback) {
|
| // |method != "POST"| should imply absence of |resource_request_body|.
|
| if (method != "POST" && resource_request_body) {
|
| @@ -320,7 +322,7 @@ void NavigationHandleImpl::WillStartRequest(
|
| has_user_gesture_ = has_user_gesture;
|
| transition_ = transition;
|
| is_external_protocol_ = is_external_protocol;
|
| -
|
| + fetch_request_context_type_ = fetch_request_context_type;
|
| state_ = WILL_SEND_REQUEST;
|
| complete_callback_ = callback;
|
|
|
|
|