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

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

Issue 11419307: Garbage Collect the Storage directory on next profile start after an extension uninstall. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: small fixes. Created 8 years 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
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);
}

Powered by Google App Engine
This is Rietveld 408576698