Index: third_party/WebKit/Source/core/editing/suggestion/TextSuggestionController.h |
diff --git a/third_party/WebKit/Source/core/editing/suggestion/TextSuggestionController.h b/third_party/WebKit/Source/core/editing/suggestion/TextSuggestionController.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..7f2350ef5f132bc52fee30d32c9cf0e3b779d152 |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/editing/suggestion/TextSuggestionController.h |
@@ -0,0 +1,62 @@ |
+// Copyright 2017 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef TextSuggestionController_h |
+#define TextSuggestionController_h |
+ |
+#include "core/CoreExport.h" |
+#include "core/dom/DocumentShutdownObserver.h" |
+#include "core/editing/VisiblePosition.h" |
+#include "platform/heap/Handle.h" |
+#include "public/platform/input_host.mojom-blink.h" |
+ |
+namespace blink { |
+ |
+class Document; |
+class LocalFrame; |
+ |
+// This class handles functionality related to displaying a menu of text |
+// suggestions (e.g. from spellcheck), and performing actions relating to those |
+// suggestions. Android is currently the only platform that has such a menu. |
+class CORE_EXPORT TextSuggestionController final |
+ : public GarbageCollectedFinalized<TextSuggestionController>, |
+ public DocumentShutdownObserver { |
+ USING_GARBAGE_COLLECTED_MIXIN(TextSuggestionController); |
+ |
+ public: |
+ explicit TextSuggestionController(LocalFrame&); |
+ |
+ void DocumentAttached(Document*); |
+ |
+ bool IsMenuOpen() const; |
+ |
+ void HandlePotentialMisspelledWordTap( |
+ const VisiblePositionInFlatTree& caret_visible_position); |
+ |
+ void ApplySpellCheckSuggestion(const WTF::String& suggestion); |
+ void DeleteActiveSuggestionRange(); |
+ void NewWordAddedToDictionary(const WTF::String& word); |
+ void SpellCheckMenuTimeoutCallback(); |
+ void SuggestionMenuClosed(); |
+ |
+ DECLARE_TRACE(); |
+ |
+ private: |
+ Document& GetDocument() const; |
+ bool IsAvailable() const; |
+ |
+ LocalFrame& GetFrame() const; |
+ |
+ void ReplaceSpellingMarkerTouchingSelectionWithText(const String&); |
+ |
+ bool is_suggestion_menu_open_; |
+ const Member<LocalFrame> frame_; |
+ mojom::blink::TextSuggestionHostPtr text_suggestion_host_; |
+ |
+ DISALLOW_COPY_AND_ASSIGN(TextSuggestionController); |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // TextSuggestionController_h |