diff options
Diffstat (limited to 'content/browser/site_instance.cc')
-rw-r--r-- | content/browser/site_instance.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/content/browser/site_instance.cc b/content/browser/site_instance.cc index b8c55b6..0f0baaf 100644 --- a/content/browser/site_instance.cc +++ b/content/browser/site_instance.cc @@ -37,7 +37,6 @@ SiteInstance::SiteInstance(BrowsingInstance* browsing_instance) browsing_instance_(browsing_instance), render_process_host_factory_(NULL), process_(NULL), - max_page_id_(-1), has_site_(false) { DCHECK(browsing_instance); @@ -87,10 +86,6 @@ content::RenderProcessHost* SiteInstance::GetProcess() { content::GetContentClient()->browser()->SiteInstanceGotProcess(this); - // Make sure the process starts at the right max_page_id, and ensure that - // we send an update to the renderer process. - process_->UpdateAndSendMaxPageID(max_page_id_); - if (has_site_) LockToOrigin(); } |