| Index: chrome/browser/ui/views/tab_contents/native_tab_contents_view_win.cc
|
| diff --git a/chrome/browser/ui/views/tab_contents/native_tab_contents_view_win.cc b/chrome/browser/ui/views/tab_contents/native_tab_contents_view_win.cc
|
| index c551e9e960957d354616cb6e3e4376c9e39a78ca..ec01bcc15896fb4c5e3959717bea80f6ae0e4185 100644
|
| --- a/chrome/browser/ui/views/tab_contents/native_tab_contents_view_win.cc
|
| +++ b/chrome/browser/ui/views/tab_contents/native_tab_contents_view_win.cc
|
| @@ -282,6 +282,12 @@ void NativeTabContentsViewWin::OnNCPaint(HRGN rgn) {
|
| // here since the view will draw everything correctly.
|
| }
|
|
|
| +LRESULT NativeTabContentsViewWin::OnNCHitTest(const CPoint& point) {
|
| + // Allow hit tests to fall through to the parent window.
|
| + SetMsgHandled(true);
|
| + return HTTRANSPARENT;
|
| +}
|
| +
|
| ////////////////////////////////////////////////////////////////////////////////
|
| // NativeTabContentsViewWin, private:
|
|
|
|
|