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

Unified Diff: third_party/WebKit/Source/core/editing/TextSuggestionBackendImplAndroid.h

Issue 2650113004: [WIP] Add support for Android SuggestionSpans when editing text (Closed)
Patch Set: Uploading the latest version from my repo so I can reference it Created 3 years, 8 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/TextSuggestionBackendImplAndroid.h
diff --git a/third_party/WebKit/Source/core/editing/TextSuggestionBackendImplAndroid.h b/third_party/WebKit/Source/core/editing/TextSuggestionBackendImplAndroid.h
new file mode 100644
index 0000000000000000000000000000000000000000..069fa207a04f093eae366ebf16b59be607716d2a
--- /dev/null
+++ b/third_party/WebKit/Source/core/editing/TextSuggestionBackendImplAndroid.h
@@ -0,0 +1,37 @@
+// 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 TextSuggestionBackendImplAndroid_h
+#define TextSuggestionBackendImplAndroid_h
+
+#include "core/CoreExport.h"
+#include "core/editing/TextSuggestionController.h"
+#include "mojo/public/cpp/bindings/strong_binding.h"
+#include "platform/heap/Persistent.h"
+#include "public/platform/input_messages.mojom-blink.h"
+
+namespace blink {
+
+class LocalFrame;
+class TextSuggestionController;
+
+class CORE_EXPORT TextSuggestionBackendImplAndroid final
+ : public mojom::blink::TextSuggestionBackend {
+ public:
+ explicit TextSuggestionBackendImplAndroid(LocalFrame&);
+
+ static void create(LocalFrame*, mojom::blink::TextSuggestionBackendRequest);
+
+ void ApplySuggestionReplacement(int64_t document_marker_hash,
+ int32_t suggestion_index) override;
+ void DeleteSuggestionHighlight() override;
+ void SuggestionMenuClosed() override;
+
+ private:
+ WeakPersistent<LocalFrame> m_frame;
+};
+
+} // namespace blink
+
+#endif // TextSuggestionBackendImplAndroid_h

Powered by Google App Engine
This is Rietveld 408576698