diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-19 22:53:30 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-19 22:53:30 +0000 |
commit | ec322ff6c39bf30e9b3c1eb878a95507029c6002 (patch) | |
tree | 186cb72db581cab4643182d47f040b65b1addb46 /chrome/browser/native_ui_contents.cc | |
parent | f3f568b18078fa29f9b84cd66bd2d1029ce408a1 (diff) | |
download | chromium_src-ec322ff6c39bf30e9b3c1eb878a95507029c6002.zip chromium_src-ec322ff6c39bf30e9b3c1eb878a95507029c6002.tar.gz chromium_src-ec322ff6c39bf30e9b3c1eb878a95507029c6002.tar.bz2 |
Re-land this change: http://codereview.chromium.org/10967/show
Now with two improvements:
- no longer create WebContentsViews as WS_VISIBLE, to prevent them from showing up in the taskbar
- make sure overridden CreateView in NativeUIContents and StatusView have the correct signature.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5723 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/native_ui_contents.cc')
-rw-r--r-- | chrome/browser/native_ui_contents.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/native_ui_contents.cc b/chrome/browser/native_ui_contents.cc index 840bb91..0c87e8b 100644 --- a/chrome/browser/native_ui_contents.cc +++ b/chrome/browser/native_ui_contents.cc @@ -148,10 +148,9 @@ NativeUIContents::~NativeUIContents() { path_to_native_uis_.end()); } -void NativeUIContents::CreateView(HWND parent_hwnd, - const gfx::Rect& initial_bounds) { +void NativeUIContents::CreateView() { set_delete_on_destroy(false); - ContainerWin::Init(parent_hwnd, initial_bounds, false); + ContainerWin::Init(GetDesktopWindow(), gfx::Rect(), false); } LRESULT NativeUIContents::OnCreate(LPCREATESTRUCT create_struct) { |