| 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 048554c4e9c7c38fb2f59e88d854b2d762a7937e..3282fd7c39f363f8df76b955c85bb3334d1ef0ad 100644
|
| --- a/content/browser/frame_host/navigation_handle_impl.h
|
| +++ b/content/browser/frame_host/navigation_handle_impl.h
|
| @@ -73,7 +73,7 @@ class CONTENT_EXPORT NavigationHandleImpl : public NavigationHandle {
|
| const GURL& url,
|
| FrameTreeNode* frame_tree_node,
|
| bool is_renderer_initiated,
|
| - bool is_synchronous,
|
| + bool is_same_page,
|
| bool is_srcdoc,
|
| const base::TimeTicks& navigation_start,
|
| int pending_nav_entry_id);
|
| @@ -84,7 +84,6 @@ class CONTENT_EXPORT NavigationHandleImpl : public NavigationHandle {
|
| bool IsInMainFrame() override;
|
| bool IsParentMainFrame() override;
|
| bool IsRendererInitiated() override;
|
| - bool IsSynchronousNavigation() override;
|
| bool IsSrcdoc() override;
|
| bool WasServerRedirect() override;
|
| int GetFrameTreeNodeId() override;
|
| @@ -253,7 +252,7 @@ class CONTENT_EXPORT NavigationHandleImpl : public NavigationHandle {
|
| NavigationHandleImpl(const GURL& url,
|
| FrameTreeNode* frame_tree_node,
|
| bool is_renderer_initiated,
|
| - bool is_synchronous,
|
| + bool is_same_page,
|
| bool is_srcdoc,
|
| const base::TimeTicks& navigation_start,
|
| int pending_nav_entry_id);
|
| @@ -281,8 +280,7 @@ class CONTENT_EXPORT NavigationHandleImpl : public NavigationHandle {
|
| net::Error net_error_code_;
|
| RenderFrameHostImpl* render_frame_host_;
|
| const bool is_renderer_initiated_;
|
| - bool is_same_page_;
|
| - const bool is_synchronous_;
|
| + const bool is_same_page_;
|
| const bool is_srcdoc_;
|
| bool was_redirected_;
|
| scoped_refptr<net::HttpResponseHeaders> response_headers_;
|
|
|