| Index: content/browser/renderer_host/ime_adapter_android.h
|
| diff --git a/content/browser/renderer_host/ime_adapter_android.h b/content/browser/renderer_host/ime_adapter_android.h
|
| index e920c03d80214c4e53337dab8123034960f72c04..a23696da37d83eb699b2f034fbd048683cec7c36 100644
|
| --- a/content/browser/renderer_host/ime_adapter_android.h
|
| +++ b/content/browser/renderer_host/ime_adapter_android.h
|
| @@ -42,8 +42,12 @@ class ImeAdapterAndroid {
|
| long timestamp_ms,
|
| int native_key_code,
|
| int unicode_char);
|
| - void SetComposingText(JNIEnv*, jobject, jstring text, int new_cursor_pos);
|
| - void CommitText(JNIEnv*, jobject, jstring text);
|
| + void SetComposingText(JNIEnv*,
|
| + jobject obj,
|
| + jobject text,
|
| + jstring text_str,
|
| + int new_cursor_pos);
|
| + void CommitText(JNIEnv*, jobject, jstring text_str);
|
| void FinishComposingText(JNIEnv* env, jobject);
|
| void AttachImeAdapter(JNIEnv*, jobject java_object);
|
| void SetEditableSelectionOffsets(JNIEnv*, jobject, int start, int end);
|
|
|