| Index: content/browser/frame_host/navigation_entry_impl.h
|
| diff --git a/content/browser/frame_host/navigation_entry_impl.h b/content/browser/frame_host/navigation_entry_impl.h
|
| index 8b5066e3e5dc986eab8195128327c4e715567084..6590a71312744f27d81e9f1da01f108c336f1d93 100644
|
| --- a/content/browser/frame_host/navigation_entry_impl.h
|
| +++ b/content/browser/frame_host/navigation_entry_impl.h
|
| @@ -23,6 +23,7 @@
|
| #include "content/public/common/ssl_status.h"
|
|
|
| namespace content {
|
| +class ResourceRequestBody;
|
| struct CommonNavigationParams;
|
| struct RequestNavigationParams;
|
| struct StartNavigationParams;
|
| @@ -160,12 +161,14 @@ class CONTENT_EXPORT NavigationEntryImpl
|
| // Helper functions to construct NavigationParameters for a navigation to this
|
| // NavigationEntry.
|
| CommonNavigationParams ConstructCommonNavigationParams(
|
| + const std::string& method,
|
| const GURL& dest_url,
|
| const Referrer& dest_referrer,
|
| FrameMsg_Navigate_Type::Value navigation_type,
|
| LoFiState lofi_state,
|
| const base::TimeTicks& navigation_start) const;
|
| - StartNavigationParams ConstructStartNavigationParams() const;
|
| + StartNavigationParams ConstructStartNavigationParams(
|
| + const scoped_refptr<ResourceRequestBody>& post_body) const;
|
| RequestNavigationParams ConstructRequestNavigationParams(
|
| const FrameNavigationEntry& frame_entry,
|
| bool is_same_document_history_load,
|
|
|