Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1017)

Unified Diff: content/browser/renderer_host/render_widget_host_view_android.cc

Issue 2650113004: [WIP] Add support for Android SuggestionSpans when editing text (Closed)
Patch Set: Remove logging statements, fix copyright years in new files Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/render_widget_host_view_android.cc
diff --git a/content/browser/renderer_host/render_widget_host_view_android.cc b/content/browser/renderer_host/render_widget_host_view_android.cc
index c391a17e971bb311710dfb1f5a74bdf3407620dd..3c35ce70b8f0e4a813add3f1cf3db78d9d9ec4c9 100644
--- a/content/browser/renderer_host/render_widget_host_view_android.cc
+++ b/content/browser/renderer_host/render_widget_host_view_android.cc
@@ -950,6 +950,11 @@ void RenderWidgetHostViewAndroid::SetMultiTouchZoomSupportEnabled(
gesture_provider_.SetMultiTouchZoomSupportEnabled(enabled);
}
+void RenderWidgetHostViewAndroid::ShowTextSuggestionMenu(
+ const std::vector<blink::WebTextSuggestionInfo>& suggestionInfos) {
+ ime_adapter_android_.ShowTextSuggestionMenu(suggestionInfos);
+}
+
void RenderWidgetHostViewAndroid::FocusedNodeChanged(
bool is_editable_node,
const gfx::Rect& node_bounds_in_screen) {

Powered by Google App Engine
This is Rietveld 408576698