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

Unified Diff: ui/base/ime/android/cursor_anchor_info_sender.h

Issue 643193003: Support InputMethodManager#updateCursorAnchorInfo for Android 5.0 (C++ version) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Send ImeCompositionRangeChanged only when necessary Created 5 years, 11 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
« no previous file with comments | « ui/base/ime/android/cursor_anchor_info_controller_unittest.cc ('k') | ui/base/ui_base.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/ime/android/cursor_anchor_info_sender.h
diff --git a/ui/base/ime/android/cursor_anchor_info_sender.h b/ui/base/ime/android/cursor_anchor_info_sender.h
new file mode 100644
index 0000000000000000000000000000000000000000..bd6fe6f8b6c7e34eaede18e4bbe3711438bb73cd
--- /dev/null
+++ b/ui/base/ime/android/cursor_anchor_info_sender.h
@@ -0,0 +1,21 @@
+// Copyright (c) 2014 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 UI_BASE_IME_ANDROID_CURAOR_ANCHOR_INFO_SENDER_H_
+#define UI_BASE_IME_ANDROID_CURAOR_ANCHOR_INFO_SENDER_H_
+
+namespace ui {
+
+class CursorAnchorInfoBuilder;
+
+class UI_BASE_EXPORT CursorAnchorInfoSender {
+ public:
+ virtual ~CursorAnchorInfoSender() {}
+
+ virtual void SendCursorAnchorInfo(CursorAnchorInfoBuilder* builder) = 0;
+};
+
+} // namespace ui
+
+#endif // UI_BASE_IME_ANDROID_CURAOR_ANCHOR_INFO_SENDER_H_
« no previous file with comments | « ui/base/ime/android/cursor_anchor_info_controller_unittest.cc ('k') | ui/base/ui_base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698