Index: content/renderer/render_frame_impl.h |
diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h |
index d27d1590142d208e6fa62799d545ba92234f7742..c1c0e1caec338eb2011ecc83b6a81678e8c24c64 100644 |
--- a/content/renderer/render_frame_impl.h |
+++ b/content/renderer/render_frame_impl.h |
@@ -17,6 +17,7 @@ |
#include "base/id_map.h" |
#include "base/macros.h" |
#include "base/memory/linked_ptr.h" |
+#include "base/memory/ref_counted.h" |
#include "base/memory/weak_ptr.h" |
#include "base/observer_list.h" |
#include "base/process/process_handle.h" |
@@ -838,11 +839,14 @@ class CONTENT_EXPORT RenderFrameImpl |
// |is_history_navigation_in_new_child| is true, the browser process should |
// look for a matching FrameNavigationEntry in the last committed entry to use |
// instead of |url|. |
- void OpenURL(const GURL& url, |
- const Referrer& referrer, |
- blink::WebNavigationPolicy policy, |
- bool should_replace_current_entry, |
- bool is_history_navigation_in_new_child); |
+ void OpenURL( |
+ const GURL& url, |
+ bool uses_post, |
+ const scoped_refptr<ResourceRequestBodyImpl>& resource_request_body, |
+ const Referrer& referrer, |
+ blink::WebNavigationPolicy policy, |
+ bool should_replace_current_entry, |
+ bool is_history_navigation_in_new_child); |
// Performs a navigation in the frame. This provides a unified function for |
// the current code path and the browser-side navigation path (in |