OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/containers/scoped_ptr_hash_map.h" | 10 #include "base/containers/scoped_ptr_hash_map.h" |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 RenderFrameHostImpl* render_frame_host, | 58 RenderFrameHostImpl* render_frame_host, |
59 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) override; | 59 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) override; |
60 bool NavigateToPendingEntry(FrameTreeNode* frame_tree_node, | 60 bool NavigateToPendingEntry(FrameTreeNode* frame_tree_node, |
61 const FrameNavigationEntry& frame_entry, | 61 const FrameNavigationEntry& frame_entry, |
62 NavigationController::ReloadType reload_type, | 62 NavigationController::ReloadType reload_type, |
63 bool is_same_document_history_load) override; | 63 bool is_same_document_history_load) override; |
64 bool NavigateNewChildFrame(RenderFrameHostImpl* render_frame_host, | 64 bool NavigateNewChildFrame(RenderFrameHostImpl* render_frame_host, |
65 const std::string& unique_name) override; | 65 const std::string& unique_name) override; |
66 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, | 66 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, |
67 const GURL& url, | 67 const GURL& url, |
| 68 bool uses_post, |
| 69 const scoped_refptr<ResourceRequestBodyImpl>& body, |
68 SiteInstance* source_site_instance, | 70 SiteInstance* source_site_instance, |
69 const Referrer& referrer, | 71 const Referrer& referrer, |
70 WindowOpenDisposition disposition, | 72 WindowOpenDisposition disposition, |
71 bool should_replace_current_entry, | 73 bool should_replace_current_entry, |
72 bool user_gesture) override; | 74 bool user_gesture) override; |
73 void RequestTransferURL( | 75 void RequestTransferURL( |
74 RenderFrameHostImpl* render_frame_host, | 76 RenderFrameHostImpl* render_frame_host, |
75 const GURL& url, | 77 const GURL& url, |
76 SiteInstance* source_site_instance, | 78 SiteInstance* source_site_instance, |
77 const std::vector<GURL>& redirect_chain, | 79 const std::vector<GURL>& redirect_chain, |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 NavigatorDelegate* delegate_; | 157 NavigatorDelegate* delegate_; |
156 | 158 |
157 std::unique_ptr<NavigatorImpl::NavigationMetricsData> navigation_data_; | 159 std::unique_ptr<NavigatorImpl::NavigationMetricsData> navigation_data_; |
158 | 160 |
159 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl); | 161 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl); |
160 }; | 162 }; |
161 | 163 |
162 } // namespace content | 164 } // namespace content |
163 | 165 |
164 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ | 166 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ |
OLD | NEW |