Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Unified Diff: content/browser/tab_contents/navigation_entry_impl.h

Issue 9317009: Store the UploadData identifier in NavigationEntryImpl. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nits from self-review Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 27299c96cf764c636c05ee24897bb59deafbe71e..cdd6f243bf1111de03f3e21160cc29472388bd0e 100644
--- a/content/browser/tab_contents/navigation_entry_impl.h
+++ b/content/browser/tab_contents/navigation_entry_impl.h
@@ -54,6 +54,8 @@ class CONTENT_EXPORT NavigationEntryImpl
virtual const GURL& GetUserTypedURL() const OVERRIDE;
virtual void SetHasPostData(bool has_post_data) OVERRIDE;
virtual bool GetHasPostData() const OVERRIDE;
+ virtual void SetPostID(int64 post_id) OVERRIDE;
+ virtual int64 GetPostID() const OVERRIDE;
virtual const FaviconStatus& GetFavicon() const OVERRIDE;
virtual FaviconStatus& GetFavicon() OVERRIDE;
virtual const SSLStatus& GetSSL() const OVERRIDE;
@@ -174,6 +176,7 @@ class CONTENT_EXPORT NavigationEntryImpl
PageTransition transition_type_;
GURL user_typed_url_;
bool has_post_data_;
+ int64 post_id_;
RestoreType restore_type_;
// This member is not persisted with sesssion restore.

Powered by Google App Engine
This is Rietveld 408576698