Chromium Code Reviews| 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_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 860 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 871 #endif | 871 #endif |
| 872 | 872 |
| 873 // Requests that the browser process navigates to |url|. If | 873 // Requests that the browser process navigates to |url|. If |
| 874 // |is_history_navigation_in_new_child| is true, the browser process should | 874 // |is_history_navigation_in_new_child| is true, the browser process should |
| 875 // look for a matching FrameNavigationEntry in the last committed entry to use | 875 // look for a matching FrameNavigationEntry in the last committed entry to use |
| 876 // instead of |url|. | 876 // instead of |url|. |
| 877 void OpenURL( | 877 void OpenURL( |
| 878 const GURL& url, | 878 const GURL& url, |
| 879 bool uses_post, | 879 bool uses_post, |
| 880 const scoped_refptr<ResourceRequestBodyImpl>& resource_request_body, | 880 const scoped_refptr<ResourceRequestBodyImpl>& resource_request_body, |
| 881 const std::string& extra_headers, | |
|
nasko
2016/10/06 18:15:01
Why not keep this in the same order as the struct
Łukasz Anforowicz
2016/10/06 18:33:54
The parameters should probably be in the same orde
| |
| 881 const Referrer& referrer, | 882 const Referrer& referrer, |
| 882 blink::WebNavigationPolicy policy, | 883 blink::WebNavigationPolicy policy, |
| 883 bool should_replace_current_entry, | 884 bool should_replace_current_entry, |
| 884 bool is_history_navigation_in_new_child); | 885 bool is_history_navigation_in_new_child); |
| 885 | 886 |
| 886 // Performs a navigation in the frame. This provides a unified function for | 887 // Performs a navigation in the frame. This provides a unified function for |
| 887 // the current code path and the browser-side navigation path (in | 888 // the current code path and the browser-side navigation path (in |
| 888 // development). Currently used by OnNavigate, with all *NavigationParams | 889 // development). Currently used by OnNavigate, with all *NavigationParams |
| 889 // provided by the browser. |stream_params| should be null. | 890 // provided by the browser. |stream_params| should be null. |
| 890 // PlzNavigate: used by OnCommitNavigation, with |common_params| and | 891 // PlzNavigate: used by OnCommitNavigation, with |common_params| and |
| (...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1301 remote_associated_interfaces_; | 1302 remote_associated_interfaces_; |
| 1302 | 1303 |
| 1303 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1304 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1304 | 1305 |
| 1305 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1306 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1306 }; | 1307 }; |
| 1307 | 1308 |
| 1308 } // namespace content | 1309 } // namespace content |
| 1309 | 1310 |
| 1310 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1311 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |