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..0ed618d3aaaeefd08489b8d561c19f28838fa833 |
--- /dev/null |
+++ b/third_party/WebKit/Source/core/editing/suggestion/TextSuggestionController.h |
@@ -0,0 +1,57 @@ |
+// 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 "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> { |
+ WTF_MAKE_NONCOPYABLE(TextSuggestionController); |
+ |
+ public: |
+ explicit TextSuggestionController(LocalFrame&); |
+ |
+ bool IsMenuOpen() const; |
+ |
+ void HandlePotentialMisspelledWordTap(); |
+ |
+ 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 { |
+ DCHECK(frame_); |
+ return *frame_; |
+ } |
+ |
+ void ReplaceActiveSuggestionRange(const String&); |
+ |
+ bool suggestion_menu_is_open_; |
+ Member<LocalFrame> frame_; |
+ mojom::blink::TextSuggestionHostPtr text_suggestion_host_; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // TextSuggestionController_h |