| 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 9d31ad11e49d14f5769da929298131549b8efefc..22011f52d4eb0ccea403f59b8c0d142a3e61e3a2 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
|
| @@ -281,6 +281,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:
|
|
|
|
|