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

Unified Diff: chrome/browser/external_tab_container.cc

Issue 62044: Make the RenderViewHostFactory a global. This prevents us from having to pass... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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 | « chrome/browser/external_tab_container.h ('k') | chrome/browser/navigation_controller_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/external_tab_container.cc
===================================================================
--- chrome/browser/external_tab_container.cc (revision 13136)
+++ chrome/browser/external_tab_container.cc (working copy)
@@ -64,21 +64,12 @@
DCHECK(focus_manager);
focus_manager->AddKeystrokeListener(this);
- tab_contents_ = TabContents::CreateWithType(TAB_CONTENTS_WEB, profile,
- NULL, NULL);
- if (!tab_contents_) {
- NOTREACHED();
- DestroyWindow();
- return false;
- }
+ tab_contents_ = new WebContents(profile, NULL, MSG_ROUTING_NONE, NULL);
tab_contents_->SetupController(profile);
tab_contents_->set_delegate(this);
+ tab_contents_->render_view_host()->AllowExternalHostBindings();
- WebContents* web_conents = tab_contents_->AsWebContents();
- if (web_conents)
- web_conents->render_view_host()->AllowExternalHostBindings();
-
// Create a TabContentsContainerView to handle focus cycling using Tab and
// Shift-Tab.
tab_contents_container_ = new TabContentsContainerView();
@@ -402,7 +393,7 @@
void ExternalTabContainer::SetInitialFocus(bool reverse) {
DCHECK(tab_contents_);
if (tab_contents_) {
- tab_contents_->SetInitialFocus(reverse);
+ static_cast<TabContents*>(tab_contents_)->SetInitialFocus(reverse);
}
}
« no previous file with comments | « chrome/browser/external_tab_container.h ('k') | chrome/browser/navigation_controller_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698