| Index: content/browser/renderer_host/render_widget_host_view.h
|
| diff --git a/content/browser/renderer_host/render_widget_host_view.h b/content/browser/renderer_host/render_widget_host_view.h
|
| index 3874bd4092e1b37e56a0634e51c474e28b5feca9..b4d0b4fb5c3340b9e124ea91d7fd466749a8034d 100644
|
| --- a/content/browser/renderer_host/render_widget_host_view.h
|
| +++ b/content/browser/renderer_host/render_widget_host_view.h
|
| @@ -19,6 +19,7 @@
|
| #include "content/common/content_export.h"
|
| #include "third_party/skia/include/core/SkBitmap.h"
|
| #include "third_party/skia/include/core/SkColor.h"
|
| +#include "third_party/skia/include/core/SkRegion.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
|
| #include "third_party/WebKit/Source/WebKit/chromium/public/WebPopupType.h"
|
| #include "ui/base/ime/text_input_type.h"
|
| @@ -327,6 +328,9 @@ class RenderWidgetHostView {
|
| virtual bool LockMouse() = 0;
|
| virtual void UnlockMouse() = 0;
|
|
|
| + // The region specified will be transparent to mouse clicks.
|
| + virtual void SetTransparentRegion(SkRegion* region) {}
|
| +
|
| void set_popup_type(WebKit::WebPopupType popup_type) {
|
| popup_type_ = popup_type;
|
| }
|
|
|