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

Unified Diff: content/browser/android/content_view_core_impl.cc

Issue 720313004: Add autocapitalize support to IME support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased 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
Index: content/browser/android/content_view_core_impl.cc
diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc
index 189ac67d4a19286d009d5007891ce90cd23d473a..e65a85a3fdbd91afbe80190d653eb36d88cc4c2d 100644
--- a/content/browser/android/content_view_core_impl.cc
+++ b/content/browser/android/content_view_core_impl.cc
@@ -1198,6 +1198,7 @@ long ContentViewCoreImpl::GetNativeImeAdapter(JNIEnv* env, jobject obj) {
void ContentViewCoreImpl::UpdateImeAdapter(long native_ime_adapter,
int text_input_type,
+ int text_input_mode,
int text_input_flags,
const std::string& text,
int selection_start,
@@ -1216,6 +1217,7 @@ void ContentViewCoreImpl::UpdateImeAdapter(long native_ime_adapter,
obj.obj(),
native_ime_adapter,
text_input_type,
+ text_input_mode,
text_input_flags,
jstring_text.obj(),
selection_start,

Powered by Google App Engine
This is Rietveld 408576698