| Index: content/public/browser/render_widget_host_view.h
|
| diff --git a/content/public/browser/render_widget_host_view.h b/content/public/browser/render_widget_host_view.h
|
| index 99d152cb15f3f3ffc8c6c3c4e37d766cf1ddc376..3ca9b92516b0e2c3b2ae55de5479f16cc71ef896 100644
|
| --- a/content/public/browser/render_widget_host_view.h
|
| +++ b/content/public/browser/render_widget_host_view.h
|
| @@ -12,6 +12,7 @@
|
|
|
| #include "content/common/content_export.h"
|
| #include "third_party/skia/include/core/SkBitmap.h"
|
| +#include "third_party/skia/include/core/SkRegion.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
|
| #include "ui/gfx/native_widget_types.h"
|
|
|
| @@ -136,6 +137,11 @@ class CONTENT_EXPORT RenderWidgetHostView {
|
| // on browser_accessibility* files in content.
|
| virtual BrowserAccessibilityManager*
|
| GetBrowserAccessibilityManager() const = 0;
|
| +
|
| +#if defined(OS_WIN) && !defined(USE_AURA)
|
| + // The region specified will be transparent to mouse clicks.
|
| + virtual void SetClickthroughRegion(SkRegion* region) {}
|
| +#endif
|
| };
|
|
|
| } // namespace content
|
|
|