mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-02 12:17:15 +01:00
058e9ef2f2
- Windows: only scroll with middle mouse button when the cursor is over the view (issue #410). git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@356 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
17 lines
367 B
C++
17 lines
367 B
C++
// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
// can be found in the LICENSE file.
|
|
|
|
#include "webview_host.h"
|
|
|
|
WebViewHost::WebViewHost(BrowserWebViewDelegate* delegate)
|
|
: delegate_(delegate)
|
|
{
|
|
}
|
|
|
|
#if !defined(OS_MACOSX)
|
|
WebViewHost::~WebViewHost()
|
|
{
|
|
}
|
|
#endif
|