| Index: content/renderer/render_frame_impl.h
|
| diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
|
| index 77ab89e2460f52e979eaf18ee457b04fcbbcfc1a..8c2b6010c344d5dd21b83ab83f8b1b2a27d52fc8 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"
|
| @@ -852,11 +853,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
|
|
|