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..23d2c2f9adfe927afbfbc55087000bf68e95305a 100644 |
--- a/third_party/WebKit/Source/core/editing/SelectionController.cpp |
+++ b/third_party/WebKit/Source/core/editing/SelectionController.cpp |
@@ -37,6 +37,7 @@ |
#include "core/editing/RenderedPosition.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" |
@@ -279,6 +280,9 @@ bool SelectionController::HandleSingleClick( |
kCharacterGranularity, |
is_handle_visible ? HandleVisibility::kVisible |
: HandleVisibility::kNotVisible); |
+ |
yosin_UTC9
2017/06/08 01:50:09
nit: we don't need to have an extra blank line.
|
+ frame_->GetTextSuggestionController().HandlePotentialMisspelledWordTap(); |
+ |
yosin_UTC9
2017/06/08 01:50:09
nit: we don't need to have an extra blank line.
|
return false; |
} |