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

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

Issue 11772005: Implement a prototype to render cross-site iframes in a separate process from their parent. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge with ToT. Created 7 years, 11 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
« no previous file with comments | « content/browser/plugin_service_impl.cc ('k') | content/browser/site_per_process_browsertest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/renderer_host/render_view_host_impl.cc
diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc
index 59dcc9aa530b186e3ac7bfe300f7ae65fc1ec8cc..6e8c603927feeabc206497292cc5136db1a691b8 100644
--- a/content/browser/renderer_host/render_view_host_impl.cc
+++ b/content/browser/renderer_host/render_view_host_impl.cc
@@ -1254,8 +1254,8 @@ void RenderViewHostImpl::OnNavigate(const IPC::Message& msg) {
validated_params.url) ||
static_cast<SiteInstanceImpl*>(GetSiteInstance())->
HasWrongProcessForURL(validated_params.url)) {
- base::KillProcess(process->GetHandle(), RESULT_CODE_KILLED, true);
- UMA_HISTOGRAM_COUNTS("ChildProcess.ViolatedSitePerProcess", 1);
+ // TODO(nasko): Removed the actual kill process call until out-of-process
+ // iframes is ready to go.
}
}
« no previous file with comments | « content/browser/plugin_service_impl.cc ('k') | content/browser/site_per_process_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698