| 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/macros.h" | 10 #include "base/macros.h" |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 bool is_same_document_history_load) override; | 64 bool is_same_document_history_load) override; |
| 65 bool NavigateNewChildFrame(RenderFrameHostImpl* render_frame_host, | 65 bool NavigateNewChildFrame(RenderFrameHostImpl* render_frame_host, |
| 66 const GURL& default_url) override; | 66 const GURL& default_url) override; |
| 67 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, | 67 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, |
| 68 const GURL& url, | 68 const GURL& url, |
| 69 bool uses_post, | 69 bool uses_post, |
| 70 const scoped_refptr<ResourceRequestBodyImpl>& body, | 70 const scoped_refptr<ResourceRequestBodyImpl>& body, |
| 71 const std::string& extra_headers, | 71 const std::string& extra_headers, |
| 72 const Referrer& referrer, | 72 const Referrer& referrer, |
| 73 WindowOpenDisposition disposition, | 73 WindowOpenDisposition disposition, |
| 74 bool use_new_renderer_for_new_contents, |
| 74 bool should_replace_current_entry, | 75 bool should_replace_current_entry, |
| 75 bool user_gesture) override; | 76 bool user_gesture) override; |
| 76 void RequestTransferURL(RenderFrameHostImpl* render_frame_host, | 77 void RequestTransferURL(RenderFrameHostImpl* render_frame_host, |
| 77 const GURL& url, | 78 const GURL& url, |
| 78 SiteInstance* source_site_instance, | 79 SiteInstance* source_site_instance, |
| 79 const std::vector<GURL>& redirect_chain, | 80 const std::vector<GURL>& redirect_chain, |
| 80 const Referrer& referrer, | 81 const Referrer& referrer, |
| 81 ui::PageTransition page_transition, | 82 ui::PageTransition page_transition, |
| 82 const GlobalRequestID& transferred_global_request_id, | 83 const GlobalRequestID& transferred_global_request_id, |
| 83 bool should_replace_current_entry, | 84 bool should_replace_current_entry, |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 NavigatorDelegate* delegate_; | 157 NavigatorDelegate* delegate_; |
| 157 | 158 |
| 158 std::unique_ptr<NavigatorImpl::NavigationMetricsData> navigation_data_; | 159 std::unique_ptr<NavigatorImpl::NavigationMetricsData> navigation_data_; |
| 159 | 160 |
| 160 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl); | 161 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl); |
| 161 }; | 162 }; |
| 162 | 163 |
| 163 } // namespace content | 164 } // namespace content |
| 164 | 165 |
| 165 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ | 166 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ |
| OLD | NEW |