From a59fa04b5937c382b8f49c479d8b021d28e19b3e Mon Sep 17 00:00:00 2001 From: "jam@chromium.org" Date: Fri, 16 Sep 2011 02:16:44 +0000 Subject: Get the content shell to paint! BUG=90445 Review URL: http://codereview.chromium.org/7920003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@101438 0039d316-1c4b-4281-b951-d872f2087c98 --- content/browser/tab_contents/tab_contents_view_win.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'content/browser/tab_contents') diff --git a/content/browser/tab_contents/tab_contents_view_win.cc b/content/browser/tab_contents/tab_contents_view_win.cc index 9382321..ec6f4af 100644 --- a/content/browser/tab_contents/tab_contents_view_win.cc +++ b/content/browser/tab_contents/tab_contents_view_win.cc @@ -33,7 +33,8 @@ RenderWidgetHostView* TabContentsViewWin::CreateViewForWidget( delete view_; // TODO(jam): need to do anything else? view_ = new RenderWidgetHostViewWin(render_widget_host); - view_->Show(); + view_->CreateWnd(GetNativeView()); + view_->ShowWindow(SW_SHOW); return view_; } -- cgit v1.1