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

Unified Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 10804031: Move more files into the content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 5 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/renderer_host/render_process_host_impl.cc
===================================================================
--- content/browser/renderer_host/render_process_host_impl.cc (revision 147462)
+++ content/browser/renderer_host/render_process_host_impl.cc (working copy)
@@ -1291,14 +1291,14 @@
// process-per-tab or process-per-site-instance models.
// Note that --single-process is handled in ShouldTryToUseExistingProcessHost.
- if (content::GetContentClient()->browser()->
+ if (GetContentClient()->browser()->
ShouldUseProcessPerSite(browser_context, url)) {
return true;
}
// DevTools pages have WebUI type but should not reuse the same host.
WebUIControllerFactory* factory =
- content::GetContentClient()->browser()->GetWebUIControllerFactory();
+ GetContentClient()->browser()->GetWebUIControllerFactory();
if (factory &&
factory->UseWebUIForURL(browser_context, url) &&
!url.SchemeIs(chrome::kChromeDevToolsScheme)) {
« no previous file with comments | « content/browser/renderer_host/render_process_host_impl.h ('k') | content/browser/renderer_host/render_widget_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698