From 3a8eecb2bb859491b344be321abb4ff3d2b7f0f3 Mon Sep 17 00:00:00 2001 From: "mpcomplete@chromium.org" Date: Thu, 22 Apr 2010 23:56:30 +0000 Subject: Implement app process model isolation. The process grouping logic is unfortunately duplicated in SiteInstance and RenderView. URLs that are part of extension X's web extent get converted into a pseudo URL of the form chrome-extension://X/path. This groups pages from an extension app and its offline resources into the same process. The rest is mostly plumbing and passing data around. BUG=41273 Review URL: http://codereview.chromium.org/1735004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45384 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/tab_contents/tab_contents.cc | 6 ------ 1 file changed, 6 deletions(-) (limited to 'chrome/browser/tab_contents/tab_contents.cc') diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc index 5c265d9..998eb50 100644 --- a/chrome/browser/tab_contents/tab_contents.cc +++ b/chrome/browser/tab_contents/tab_contents.cc @@ -2830,12 +2830,6 @@ TabContents::GetLastCommittedNavigationEntryForRenderManager() { bool TabContents::CreateRenderViewForRenderManager( RenderViewHost* render_view_host) { - // If the pending navigation is to a DOMUI, tell the RenderView about any - // bindings it will need enabled. - if (render_manager_.pending_dom_ui()) - render_view_host->AllowBindings( - render_manager_.pending_dom_ui()->bindings()); - RenderWidgetHostView* rwh_view = view_->CreateViewForWidget(render_view_host); scoped_refptr request_context = request_context_; -- cgit v1.1