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

Unified Diff: content/browser/web_contents/render_view_host_manager.h

Issue 10546029: Revert 139933 - Clean up RenderViewHostManager swapping logic. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 6 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
Index: content/browser/web_contents/render_view_host_manager.h
===================================================================
--- content/browser/web_contents/render_view_host_manager.h (revision 140789)
+++ content/browser/web_contents/render_view_host_manager.h (working copy)
@@ -235,30 +235,26 @@
// switch. Can be overridden in unit tests.
bool ShouldTransitionCrossSite();
- // Returns true if for the navigation from |current_entry| to |new_entry|,
- // a new SiteInstance and BrowsingInstance should be created (even if we are
- // in a process model that doesn't usually swap). This forces a process swap
- // and severs script connections with existing tabs. Cases where this can
- // happen include transitions between WebUI and regular web pages.
+ // Returns true if the two navigation entries are incompatible in some way
+ // other than site instances. Cases where this can happen include Web UI
+ // to regular web pages. It will cause us to swap RenderViewHosts (and hence
+ // RenderProcessHosts) even if the site instance would otherwise be the same.
+ // As part of this, we'll also force new SiteInstances and BrowsingInstances.
// Either of the entries may be NULL.
- bool ShouldSwapBrowsingInstanceForNavigation(
- const content::NavigationEntry* current_entry,
+ bool ShouldSwapProcessesForNavigation(
+ const content::NavigationEntry* curr_entry,
const content::NavigationEntryImpl* new_entry) const;
- // Returns true if it is safe to reuse the current WebUI when navigating from
- // |curr_entry| to |new_entry|.
bool ShouldReuseWebUI(
const content::NavigationEntry* curr_entry,
const content::NavigationEntryImpl* new_entry) const;
// Returns an appropriate SiteInstance object for the given NavigationEntry,
- // possibly reusing the current SiteInstance. If --process-per-tab is used,
- // this is only called when ShouldSwapBrowsingInstancesForNavigation returns
- // true.
+ // possibly reusing the current SiteInstance.
+ // Never called if --process-per-tab is used.
content::SiteInstance* GetSiteInstanceForEntry(
const content::NavigationEntryImpl& entry,
- content::SiteInstance* curr_instance,
- bool force_swap);
+ content::SiteInstance* curr_instance);
// Sets up the necessary state for a new RenderViewHost with the given opener.
bool InitRenderView(content::RenderViewHost* render_view_host,
« no previous file with comments | « content/browser/debugger/devtools_manager_unittest.cc ('k') | content/browser/web_contents/render_view_host_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698