| Index: content/browser/frame_host/navigation_handle_impl.h
|
| diff --git a/content/browser/frame_host/navigation_handle_impl.h b/content/browser/frame_host/navigation_handle_impl.h
|
| index abdd01b8847f1ab1eecda43d71a8e429fbb8c943..3accd45b0ce08c6a4fd80d04befc4d3c808f4b8d 100644
|
| --- a/content/browser/frame_host/navigation_handle_impl.h
|
| +++ b/content/browser/frame_host/navigation_handle_impl.h
|
| @@ -86,7 +86,6 @@ class CONTENT_EXPORT NavigationHandleImpl : public NavigationHandle {
|
| bool is_same_page,
|
| const base::TimeTicks& navigation_start,
|
| int pending_nav_entry_id,
|
| - NavigationGesture gesture,
|
| bool started_from_context_menu);
|
| ~NavigationHandleImpl() override;
|
|
|
| @@ -120,6 +119,7 @@ class CONTENT_EXPORT NavigationHandleImpl : public NavigationHandle {
|
| NavigationThrottle::ThrottleCheckResult CallWillStartRequestForTesting(
|
| bool is_post,
|
| const Referrer& sanitized_referrer,
|
| + bool has_user_gesture,
|
| ui::PageTransition transition,
|
| bool is_external_protocol) override;
|
| NavigationThrottle::ThrottleCheckResult CallWillRedirectRequestForTesting(
|
| @@ -214,6 +214,7 @@ class CONTENT_EXPORT NavigationHandleImpl : public NavigationHandle {
|
| const std::string& method,
|
| scoped_refptr<content::ResourceRequestBodyImpl> resource_request_body,
|
| const Referrer& sanitized_referrer,
|
| + bool has_user_gesture,
|
| ui::PageTransition transition,
|
| bool is_external_protocol,
|
| RequestContextType request_context_type,
|
| @@ -313,7 +314,6 @@ class CONTENT_EXPORT NavigationHandleImpl : public NavigationHandle {
|
| bool is_same_page,
|
| const base::TimeTicks& navigation_start,
|
| int pending_nav_entry_id,
|
| - NavigationGesture gesture,
|
| bool started_from_context_menu);
|
|
|
| NavigationThrottle::ThrottleCheckResult CheckWillStartRequest();
|
| @@ -347,7 +347,7 @@ class CONTENT_EXPORT NavigationHandleImpl : public NavigationHandle {
|
| GURL url_;
|
| scoped_refptr<SiteInstance> starting_site_instance_;
|
| Referrer sanitized_referrer_;
|
| - NavigationGesture gesture_;
|
| + bool has_user_gesture_;
|
| ui::PageTransition transition_;
|
| bool is_external_protocol_;
|
| net::Error net_error_code_;
|
|
|