summaryrefslogtreecommitdiffstats
path: root/content/browser/tab_contents
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-16 02:16:44 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-09-16 02:16:44 +0000
commita59fa04b5937c382b8f49c479d8b021d28e19b3e (patch)
tree46ec83b9be8eafa257cdce13a4ec5d4fa4f4c4a3 /content/browser/tab_contents
parent2b0deb75161802f8ed5a3838448366e404d0d51d (diff)
downloadchromium_src-a59fa04b5937c382b8f49c479d8b021d28e19b3e.zip
chromium_src-a59fa04b5937c382b8f49c479d8b021d28e19b3e.tar.gz
chromium_src-a59fa04b5937c382b8f49c479d8b021d28e19b3e.tar.bz2
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
Diffstat (limited to 'content/browser/tab_contents')
-rw-r--r--content/browser/tab_contents/tab_contents_view_win.cc3
1 files changed, 2 insertions, 1 deletions
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_;
}