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 3a8f03ec7fefd2c387370648c4c4891627e5872d..c99e2f6bf5b299fe995f3d020e696339a9c0f854 100644 |
--- a/third_party/WebKit/Source/core/editing/SelectionController.cpp |
+++ b/third_party/WebKit/Source/core/editing/SelectionController.cpp |
@@ -35,6 +35,7 @@ |
#include "core/editing/Editor.h" |
#include "core/editing/FrameSelection.h" |
#include "core/editing/RenderedPosition.h" |
+#include "core/editing/TextSuggestionController.h" |
#include "core/editing/iterators/TextIterator.h" |
#include "core/editing/markers/DocumentMarkerController.h" |
#include "core/events/Event.h" |
@@ -279,6 +280,9 @@ bool SelectionController::HandleSingleClick( |
kCharacterGranularity, |
is_handle_visible ? HandleVisibility::kVisible |
: HandleVisibility::kNotVisible); |
+ |
+ frame_->GetTextSuggestionController().HandlePotentialMisspelledWordTap(); |
+ |
return false; |
} |