Index: content/renderer/render_widget.h |
diff --git a/content/renderer/render_widget.h b/content/renderer/render_widget.h |
index 0847f2e30ae1b621e2a29ea7689440e642aae81d..8fe66cef7c8d4ca4b251f6830ee91680191982a5 100644 |
--- a/content/renderer/render_widget.h |
+++ b/content/renderer/render_widget.h |
@@ -193,6 +193,8 @@ class CONTENT_EXPORT RenderWidget |
#if defined(OS_ANDROID) |
// Notifies that a tap was not consumed, so showing a UI for the unhandled |
// tap may be needed. |
+ // Performs various checks on the given WebNode to apply heuristics to |
+ // determine if triggering is appropriate. |
virtual void showUnhandledTapUIIfNeeded( |
const blink::WebPoint& tapped_position, |
const blink::WebNode& tapped_node, |
@@ -594,6 +596,10 @@ class CONTENT_EXPORT RenderWidget |
// Creates a 3D context associated with this view. |
scoped_ptr<WebGraphicsContext3DCommandBufferImpl> CreateGraphicsContext3D(); |
+#if defined(OS_ANDROID) |
+ bool isInteractive(const blink::WebNode& node) const; |
+#endif |
+ |
// Routing ID that allows us to communicate to the parent browser process |
// RenderWidgetHost. When MSG_ROUTING_NONE, no messages may be sent. |
int32 routing_id_; |