Index: content/browser/renderer_host/render_process_host_impl.cc |
diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc |
index e22cf4862344bb0e3ac281b0b6ec57f62c031deb..c26f875bce6f7e40bf06e469f2022fdadd226004 100644 |
--- a/content/browser/renderer_host/render_process_host_impl.cc |
+++ b/content/browser/renderer_host/render_process_host_impl.cc |
@@ -1406,7 +1406,7 @@ RenderProcessHost* RenderProcessHostImpl::GetProcessHostForSite( |
// See if we have an existing process for this site. If not, the caller |
// should create a new process and register it. |
- std::string site = SiteInstanceImpl::GetSiteForURL(browser_context, url) |
+ std::string site = SiteInstance::GetSiteForURL(browser_context, url) |
.possibly_invalid_spec(); |
return map->FindProcess(site); |
} |
@@ -1422,7 +1422,7 @@ void RenderProcessHostImpl::RegisterProcessHostForSite( |
// TODO(creis): Determine if it's better to allow registration of |
// empty sites or not. For now, group anything from which we can't parse |
// a site into the same process, when using --process-per-site. |
- std::string site = SiteInstanceImpl::GetSiteForURL(browser_context, url) |
+ std::string site = SiteInstance::GetSiteForURL(browser_context, url) |
.possibly_invalid_spec(); |
map->RegisterProcess(site, process); |
} |