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

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

Issue 1006693002: Add NavigationEntryImpl::TreeNode for tracking FrameNavigationEntries. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Initial patch Created 5 years, 9 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
« no previous file with comments | « no previous file | content/browser/frame_host/frame_navigation_entry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/frame_navigation_entry.h
diff --git a/content/browser/frame_host/frame_navigation_entry.h b/content/browser/frame_host/frame_navigation_entry.h
index 622b6826834aa55a5556f4db5a48447d5788edaf..2d38a2533f1edb63b280e12f449cacbce0697cf7 100644
--- a/content/browser/frame_host/frame_navigation_entry.h
+++ b/content/browser/frame_host/frame_navigation_entry.h
@@ -14,19 +14,24 @@ namespace content {
// Represents a session history item for a particular frame.
//
-// This class is currently owned by a single NavigationEntry and only tracks the
-// main frame.
+// This class is refcounted and can be shared across multiple NavigationEntries.
+// For now, it is owned by a single NavigationEntry and only tracks the main
+// frame.
//
-// TODO(creis): Keep a tree of FrameNavigationEntries in each NavigationEntry,
-// one per frame. FrameNavigationEntries may be shared across NavigationEntries
-// if the frame hasn't changed.
-class CONTENT_EXPORT FrameNavigationEntry {
+// TODO(creis): In --site-per-process, fill in a tree of FrameNavigationEntries
+// in each NavigationEntry, one per frame. FrameNavigationEntries may be shared
+// across NavigationEntries if the frame hasn't changed.
+class CONTENT_EXPORT FrameNavigationEntry
+ : public base::RefCounted<FrameNavigationEntry> {
public:
FrameNavigationEntry();
FrameNavigationEntry(SiteInstanceImpl* site_instance,
const GURL& url,
const Referrer& referrer);
- virtual ~FrameNavigationEntry();
+
+ // Creates a copy of this FrameNavigationEntry that can be modified
+ // independently from the original.
+ FrameNavigationEntry* Clone() const;
// The SiteInstance responsible for rendering this frame. All frames sharing
// a SiteInstance must live in the same process. This is a refcounted pointer
@@ -39,7 +44,6 @@ class CONTENT_EXPORT FrameNavigationEntry {
// The actual URL loaded in the frame. This is in contrast to the virtual
// URL, which is shown to the user.
- // TODO(creis): Move virtual URL and related members to FrameNavigationEntry.
Charlie Reis 2015/03/12 23:29:55 Unrelated, but I realized this TODO wasn't true.
void set_url(const GURL& url) { url_ = url; }
const GURL& url() const { return url_; }
@@ -48,15 +52,21 @@ class CONTENT_EXPORT FrameNavigationEntry {
const Referrer& referrer() const { return referrer_; }
private:
+ friend class base::RefCounted<FrameNavigationEntry>;
+ virtual ~FrameNavigationEntry();
+
+ // WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
+ // For all new fields, update |Clone|.
// TODO(creis): These fields have implications for session restore. This is
// currently managed by NavigationEntry, but the logic will move here.
+ // WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING WARNING
// See the accessors above for descriptions.
scoped_refptr<SiteInstanceImpl> site_instance_;
GURL url_;
Referrer referrer_;
- // Copy and assignment is explicitly allowed for this class.
+ DISALLOW_COPY_AND_ASSIGN(FrameNavigationEntry);
};
} // namespace content
« no previous file with comments | « no previous file | content/browser/frame_host/frame_navigation_entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698