diff options
author | creis@google.com <creis@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-19 16:30:39 +0000 |
---|---|---|
committer | creis@google.com <creis@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-19 16:30:39 +0000 |
commit | efc82d1015ac3dd0f7018f2b32e215804fb68a79 (patch) | |
tree | 6c0ea1c815558c17d6b1f3f4eb55563ae73d88a8 /content | |
parent | ef8f0ca99fdb6d25dff20e0d60ab64fdfe4fd1a6 (diff) | |
download | chromium_src-efc82d1015ac3dd0f7018f2b32e215804fb68a79.zip chromium_src-efc82d1015ac3dd0f7018f2b32e215804fb68a79.tar.gz chromium_src-efc82d1015ac3dd0f7018f2b32e215804fb68a79.tar.bz2 |
Prevent unused normal SiteInstances from being used for extensions.
Instead, create a new SiteInstance with the appropriate process type.
BUG=43448
TEST=RenderProcessHostTest.ProcessOverflow
TEST=SessionRestoreUITest.ShareProcessesOnRestore
Review URL: http://codereview.chromium.org/6312199
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75498 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/tab_contents/render_view_host_manager.cc | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/content/browser/tab_contents/render_view_host_manager.cc b/content/browser/tab_contents/render_view_host_manager.cc index 556c3b7..c31dc76 100644 --- a/content/browser/tab_contents/render_view_host_manager.cc +++ b/content/browser/tab_contents/render_view_host_manager.cc @@ -363,6 +363,8 @@ SiteInstance* RenderViewHostManager::GetSiteInstanceForEntry( return curr_instance; const GURL& dest_url = entry.url(); + NavigationController& controller = delegate_->GetControllerForRenderManager(); + Profile* profile = controller.profile(); // If we haven't used our SiteInstance (and thus RVH) yet, then we can use it // for this entry. We won't commit the SiteInstance to this site until the @@ -375,28 +377,28 @@ SiteInstance* RenderViewHostManager::GetSiteInstanceForEntry( // to compare against the current URL and not the SiteInstance's site. In // this case, there is no current URL, so comparing against the site is ok. // See additional comments below.) - if (curr_instance->HasRelatedSiteInstance(dest_url)) { + if (curr_instance->HasRelatedSiteInstance(dest_url)) return curr_instance->GetRelatedSiteInstance(dest_url); - } else { - // Normally the "site" on the SiteInstance is set lazily when the load - // actually commits. This is to support better process sharing in case - // the site redirects to some other site: we want to use the destination - // site in the site instance. - // - // In the case of session restore, as it loads all the pages immediately - // we need to set the site first, otherwise after a restore none of the - // pages would share renderers. - // - // For Web UI (this mostly comes up for the new tab page), the - // SiteInstance has special meaning: we never want to reassign the - // process. If you navigate to another site before the Web UI commits, - // we still want to create a new process rather than re-using the - // existing Web UI process. - if (entry.restore_type() != NavigationEntry::RESTORE_NONE || - WebUIFactory::HasWebUIScheme(dest_url)) - curr_instance->SetSite(dest_url); - return curr_instance; - } + + // For extensions and Web UI URLs (such as the new tab page), we do not + // want to use the curr_instance if it has no site, since it will have a + // RenderProcessHost of TYPE_NORMAL. Create a new SiteInstance for this + // URL instead (with the correct process type). + if (WebUIFactory::UseWebUIForURL(profile, dest_url)) + return SiteInstance::CreateSiteInstanceForURL(profile, dest_url); + + // Normally the "site" on the SiteInstance is set lazily when the load + // actually commits. This is to support better process sharing in case + // the site redirects to some other site: we want to use the destination + // site in the site instance. + // + // In the case of session restore, as it loads all the pages immediately + // we need to set the site first, otherwise after a restore none of the + // pages would share renderers in process-per-site. + if (entry.restore_type() != NavigationEntry::RESTORE_NONE) + curr_instance->SetSite(dest_url); + + return curr_instance; } // Otherwise, only create a new SiteInstance for cross-site navigation. @@ -409,7 +411,6 @@ SiteInstance* RenderViewHostManager::GetSiteInstanceForEntry( // For now, though, we're in a hybrid model where you only switch // SiteInstances if you type in a cross-site URL. This means we have to // compare the entry's URL to the last committed entry's URL. - NavigationController& controller = delegate_->GetControllerForRenderManager(); NavigationEntry* curr_entry = controller.GetLastCommittedEntry(); if (interstitial_page_) { // The interstitial is currently the last committed entry, but we want to @@ -428,7 +429,6 @@ SiteInstance* RenderViewHostManager::GetSiteInstanceForEntry( // practice.) const GURL& current_url = (curr_entry) ? curr_entry->url() : curr_instance->site(); - Profile* profile = controller.profile(); if (SiteInstance::IsSameWebSite(profile, current_url, dest_url)) { return curr_instance; |