summaryrefslogtreecommitdiffstats
path: root/content/browser/site_instance.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/browser/site_instance.h')
-rw-r--r--content/browser/site_instance.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/content/browser/site_instance.h b/content/browser/site_instance.h
index 9feccfc..b85aa9a 100644
--- a/content/browser/site_instance.h
+++ b/content/browser/site_instance.h
@@ -73,13 +73,6 @@ class CONTENT_EXPORT SiteInstance : public base::RefCounted<SiteInstance>,
render_process_host_factory_ = rph_factory;
}
- // Update / Get the max page ID for this SiteInstance.
- void UpdateMaxPageID(int32 page_id) {
- if (page_id > max_page_id_)
- max_page_id_ = page_id;
- }
- int32 max_page_id() const { return max_page_id_; }
-
// Whether this SiteInstance has a running process associated with it.
bool HasProcess() const;
@@ -196,11 +189,6 @@ class CONTENT_EXPORT SiteInstance : public base::RefCounted<SiteInstance>,
// scenario the RenderProcessHost remains the same.
content::RenderProcessHost* process_;
- // The current max_page_id in the SiteInstance's RenderProcessHost. If the
- // rendering process dies, its replacement should start issuing page IDs that
- // are larger than this value.
- int32 max_page_id_;
-
// The web site that this SiteInstance is rendering pages for.
GURL site_;