diff options
author | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-13 20:30:35 +0000 |
---|---|---|
committer | sky@google.com <sky@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-13 20:30:35 +0000 |
commit | 3ddec4cb4f33a3923db591836113fcf803b3f49d (patch) | |
tree | b218286eaa7c0a1dc202d0dc1160250e81fb5ec1 /chrome/browser/views/frame/browser_frame.cc | |
parent | 17e7b20bdf6906f4bdd574a9e0d4526456f3c301 (diff) | |
download | chromium_src-3ddec4cb4f33a3923db591836113fcf803b3f49d.zip chromium_src-3ddec4cb4f33a3923db591836113fcf803b3f49d.tar.gz chromium_src-3ddec4cb4f33a3923db591836113fcf803b3f49d.tar.bz2 |
Makes drops above the tabstrip work again. This stopped working
because of changes to the view hiearchy.
BUG=8669
TEST=see bug
Review URL: http://codereview.chromium.org/42176
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11666 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/views/frame/browser_frame.cc')
-rw-r--r-- | chrome/browser/views/frame/browser_frame.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/views/frame/browser_frame.cc b/chrome/browser/views/frame/browser_frame.cc index 99542c3..31bf41d 100644 --- a/chrome/browser/views/frame/browser_frame.cc +++ b/chrome/browser/views/frame/browser_frame.cc @@ -8,6 +8,7 @@ #include <shellapi.h> #include "chrome/browser/browser_list.h" +#include "chrome/browser/views/frame/browser_root_view.h" #include "chrome/browser/views/frame/browser_view.h" #include "chrome/browser/views/frame/glass_browser_frame_view.h" #include "chrome/browser/views/frame/opaque_browser_frame_view.h" @@ -202,6 +203,11 @@ void BrowserFrame::UpdateFrameAfterFrameChange() { UpdateDWMFrame(); } + +views::RootView* BrowserFrame::CreateRootView() { + return new BrowserRootView(this); +} + /////////////////////////////////////////////////////////////////////////////// // BrowserFrame, private: |