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

Unified Diff: content/browser/android/text_suggestion_host_impl.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: content/browser/android/text_suggestion_host_impl.h
diff --git a/content/browser/android/text_suggestion_host_impl.h b/content/browser/android/text_suggestion_host_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..acc5ae84fb9ef432bd2ff5ee0d3966cd898de642
--- /dev/null
+++ b/content/browser/android/text_suggestion_host_impl.h
@@ -0,0 +1,29 @@
+// 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 TEXT_SUGGESTION_HOST_IMPL_H_
+#define TEXT_SUGGESTION_HOST_IMPL_H_
+
+#include "third_party/WebKit/public/platform/input_host.mojom.h"
+
+namespace content {
+
+class ImeAdapterAndroid;
+
+class TextSuggestionHostImpl : public blink::mojom::TextSuggestionHost {
+ public:
+ explicit TextSuggestionHostImpl(ImeAdapterAndroid*);
+
+ static void create(ImeAdapterAndroid*,
+ blink::mojom::TextSuggestionHostRequest request);
+
+ void ShowTextSuggestionMenu(std::vector<blink::mojom::TextSuggestionInfoPtr>
+ suggestionInfos) override;
+
+ private:
+ ImeAdapterAndroid* m_imeAdapterAndroid;
+};
+}
+
+#endif // TEXT_SUGGESTION_HOST_IMPL_H_
« no previous file with comments | « content/browser/android/ime_adapter_android.cc ('k') | content/browser/android/text_suggestion_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698