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

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

Issue 30323002: [DRAFT] Create RenderFrameHostManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 1 month 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/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 1149ae6ec5fb11162e6965b16dcfad9dca299a11..2cbb96aa6c102f426044a65b6b6cb619ea192d78 100644
--- a/content/browser/frame_host/navigation_entry_impl.h
+++ b/content/browser/frame_host/navigation_entry_impl.h
@@ -216,6 +216,13 @@ class CONTENT_EXPORT NavigationEntryImpl
should_clear_history_list_ = should_clear_history_list;
}
+ int64 frame_tree_node_id() const {
+ return frame_tree_node_id_;
+ }
+ void set_frame_tree_node_id(int64 frame_tree_node_id) {
+ frame_tree_node_id_ = frame_tree_node_id;
+ }
+
private:
// WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
// Session/Tab restore save portions of this class so that it can be recreated
@@ -249,6 +256,10 @@ class CONTENT_EXPORT NavigationEntryImpl
base::Time timestamp_;
int http_status_code_;
+ // TODO(creis): Persist frame tree node ID. This belongs on
+ // FrameNavigationEntry.
+ int64 frame_tree_node_id_;
+
// This member is not persisted with session restore because it is transient.
// If the post request succeeds, this field is cleared since the same
// information is stored in |content_state_| above. It is also only shallow
« no previous file with comments | « content/browser/frame_host/navigation_controller_impl.cc ('k') | content/browser/frame_host/navigation_entry_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698