diff options
Diffstat (limited to 'chrome/browser/tab_contents/tab_contents.cc')
-rw-r--r-- | chrome/browser/tab_contents/tab_contents.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc index e6bbe98..a21ea8f 100644 --- a/chrome/browser/tab_contents/tab_contents.cc +++ b/chrome/browser/tab_contents/tab_contents.cc @@ -857,7 +857,7 @@ bool TabContents::NavigateToPendingEntry( // to a DOM UI renderer. Double check that here. int enabled_bindings = dest_render_view_host->enabled_bindings(); bool is_allowed_in_dom_ui_renderer = - DOMUIFactory::UseDOMUIForURL(profile(), entry.url()) || + DOMUIFactory::UseDOMUIForURL(entry.url()) || entry.url() == GURL(chrome::kAboutBlankURL); CHECK(!BindingsPolicy::is_dom_ui_enabled(enabled_bindings) || is_allowed_in_dom_ui_renderer); @@ -1603,8 +1603,7 @@ void TabContents::DidNavigateMainFramePostCommit( // If this is a window.open navigation, use the same DOMUI as the renderer // that opened the window, as long as both renderers have the same // privileges. - if (opener_dom_ui_type_ == - DOMUIFactory::GetDOMUIType(profile(), GetURL())) { + if (opener_dom_ui_type_ == DOMUIFactory::GetDOMUIType(GetURL())) { DOMUI* dom_ui = DOMUIFactory::CreateDOMUIForURL(this, GetURL()); // dom_ui might be NULL if the URL refers to a non-existent extension. if (dom_ui) { |