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

Unified Diff: third_party/WebKit/Source/core/editing/SelectionController.cpp

Issue 2931443003: Add support for Android spellcheck menu in Chrome/WebViews (Closed)
Patch Set: Consolidate mContentView and mContainerView Created 3 years, 5 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: third_party/WebKit/Source/core/editing/SelectionController.cpp
diff --git a/third_party/WebKit/Source/core/editing/SelectionController.cpp b/third_party/WebKit/Source/core/editing/SelectionController.cpp
index a64208ae0f600c9af33b12b11279be86dcaef3c9..29b400172e0f0d1d7f0060ccfc41cfa49a8e0804 100644
--- a/third_party/WebKit/Source/core/editing/SelectionController.cpp
+++ b/third_party/WebKit/Source/core/editing/SelectionController.cpp
@@ -38,6 +38,7 @@
#include "core/editing/VisibleSelection.h"
#include "core/editing/iterators/TextIterator.h"
#include "core/editing/markers/DocumentMarkerController.h"
+#include "core/editing/suggestion/TextSuggestionController.h"
#include "core/events/Event.h"
#include "core/frame/LocalFrame.h"
#include "core/frame/LocalFrameView.h"
@@ -332,7 +333,8 @@ bool SelectionController::HandleSingleClick(
}
bool is_handle_visible = false;
- if (HasEditableStyle(*inner_node)) {
+ const bool has_editable_style = HasEditableStyle(*inner_node);
+ if (has_editable_style) {
const bool is_text_box_empty =
CreateVisibleSelection(SelectionInFlatTree::Builder()
.SelectAllChildren(*inner_node)
@@ -354,6 +356,12 @@ bool SelectionController::HandleSingleClick(
TextGranularity::kCharacter,
is_handle_visible ? HandleVisibility::kVisible
: HandleVisibility::kNotVisible);
+
+ if (has_editable_style && event.Event().FromTouch()) {
+ frame_->GetTextSuggestionController().HandlePotentialMisspelledWordTap(
+ visible_pos);
+ }
+
return false;
}

Powered by Google App Engine
This is Rietveld 408576698