Index: content/browser/renderer_host/render_widget_host_view_base.h |
diff --git a/content/browser/renderer_host/render_widget_host_view_base.h b/content/browser/renderer_host/render_widget_host_view_base.h |
index fcb9e9bb543e19b5e792c636667beb8945fc445a..abc030f59def4c837a831a0c6fa79e933a159fda 100644 |
--- a/content/browser/renderer_host/render_widget_host_view_base.h |
+++ b/content/browser/renderer_host/render_widget_host_view_base.h |
@@ -331,14 +331,16 @@ class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView, |
virtual gfx::GLSurfaceHandle GetCompositingSurface() = 0; |
+ // Called by the RenderFrameHost when it receives an IPC response to a |
+ // TextSurroundingSelectionRequest. |
virtual void OnTextSurroundingSelectionResponse(const base::string16& content, |
size_t start_offset, |
- size_t end_offset) {}; |
+ size_t end_offset); |
-#if defined(OS_ANDROID) || defined(TOOLKIT_VIEWS) || defined(USE_AURA) |
+ // Called by the RenderWidgetHost when an ambiguous gesture is detected to |
+ // show the disambiguation popup bubble. |
virtual void ShowDisambiguationPopup(const gfx::Rect& rect_pixels, |
- const SkBitmap& zoomed_bitmap) = 0; |
-#endif |
+ const SkBitmap& zoomed_bitmap); |
#if defined(OS_ANDROID) |
// Instructs the view to not drop the surface even when the view is hidden. |