| 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 d2b34d3bdd59f8a0b08eec02af388bcf02e80a10..313f03b14f55e49581ae3b35d1ffc3ea4658eb4e 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;
|
| @@ -159,8 +160,11 @@ class CONTENT_EXPORT NavigationEntryImpl
|
|
|
| // Helper functions to construct NavigationParameters for a navigation to this
|
| // NavigationEntry.
|
| + scoped_refptr<ResourceRequestBody> ConstructBodyFromBrowserInitiatedPostData()
|
| + const;
|
| CommonNavigationParams ConstructCommonNavigationParams(
|
| const FrameNavigationEntry& frame_entry,
|
| + const scoped_refptr<ResourceRequestBody>& post_body,
|
| const GURL& dest_url,
|
| const Referrer& dest_referrer,
|
| FrameMsg_Navigate_Type::Value navigation_type,
|
|
|