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 f78bc0b8de7c20659b427a74e56d5615220f41ce..c1e3f44b24f33dd8154db09a9e04c6125ba012c0 100644 |
--- a/content/browser/renderer_host/render_widget_host_view_base.h |
+++ b/content/browser/renderer_host/render_widget_host_view_base.h |
@@ -31,6 +31,7 @@ |
#include "third_party/WebKit/public/platform/modules/screen_orientation/WebScreenOrientationType.h" |
#include "third_party/WebKit/public/web/WebPopupType.h" |
#include "third_party/WebKit/public/web/WebTextDirection.h" |
+#include "third_party/WebKit/public/web/WebTextSuggestionInfo.h" |
#include "third_party/skia/include/core/SkImageInfo.h" |
#include "ui/base/ime/text_input_mode.h" |
#include "ui/base/ime/text_input_type.h" |
@@ -316,6 +317,10 @@ class CONTENT_EXPORT RenderWidgetHostViewBase : public RenderWidgetHostView, |
const gfx::Range& range, |
const std::vector<gfx::Rect>& character_bounds); |
+ // Show drop-down menu for choosing among suggested text replacements. |
+ virtual void ShowTextSuggestionMenu( |
+ const std::vector<blink::WebTextSuggestionInfo>& suggestionInfos); |
+ |
//---------------------------------------------------------------------------- |
// The following pure virtual methods are implemented by derived classes. |