| Index: content/browser/tab_contents/navigation_entry_impl.h
|
| diff --git a/content/browser/tab_contents/navigation_entry_impl.h b/content/browser/tab_contents/navigation_entry_impl.h
|
| index 3ef2f5034cbeb3f707d345d0fb9f3797bd5343fa..9715e2f3a4481b67233cf28e5f7de2d3dede8f95 100644
|
| --- a/content/browser/tab_contents/navigation_entry_impl.h
|
| +++ b/content/browser/tab_contents/navigation_entry_impl.h
|
| @@ -60,6 +60,8 @@ class CONTENT_EXPORT NavigationEntryImpl
|
| virtual FaviconStatus& GetFavicon() OVERRIDE;
|
| virtual const SSLStatus& GetSSL() const OVERRIDE;
|
| virtual SSLStatus& GetSSL() OVERRIDE;
|
| + virtual void SetOriginalRequestURL(const GURL& original_url) OVERRIDE;
|
| + virtual const GURL& GetOriginalRequestURL() const OVERRIDE;
|
|
|
| void set_unique_id(int unique_id) {
|
| unique_id_ = unique_id;
|
| @@ -178,6 +180,7 @@ class CONTENT_EXPORT NavigationEntryImpl
|
| bool has_post_data_;
|
| int64 post_id_;
|
| RestoreType restore_type_;
|
| + GURL original_request_url_;
|
|
|
| // This member is not persisted with sesssion restore.
|
| std::string extra_headers_;
|
|
|