Index: chrome/browser/chrome_content_browser_client.cc |
=================================================================== |
--- chrome/browser/chrome_content_browser_client.cc (revision 271776) |
+++ chrome/browser/chrome_content_browser_client.cc (working copy) |
@@ -1195,14 +1195,6 @@ |
extensions::ExtensionSystem::Get(profile)->extension_service(); |
extensions::ProcessMap* process_map = extensions::ProcessMap::Get(profile); |
- // Don't allow the Task Manager to share a process with anything else. |
- // Otherwise it can affect the renderers it is observing. |
- // Note: we could create another RenderProcessHostPrivilege bucket for |
- // this to allow multiple chrome://tasks instances to share, but that's |
- // a very unlikely case without serious consequences. |
- if (site_url.GetOrigin() == GURL(chrome::kChromeUITaskManagerURL).GetOrigin()) |
- return false; |
- |
// These may be NULL during tests. In that case, just assume any site can |
// share any host. |
if (!service || !process_map) |