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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java

Issue 2596193002: Clean up names and remove unnecessary parameter (Closed)
Patch Set: rebase Created 3 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/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
index af892bf3b63523b1ba7d623bff6d7b3cecc575f5..9f97f23f810dfe48d007672441057d7d73deea0c 100644
--- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
@@ -1914,7 +1914,7 @@ public class ContentViewCore implements AccessibilityStateChangeListener, Displa
private void updateImeAdapter(long nativeImeAdapterAndroid, int textInputType,
int textInputFlags, int textInputMode, String text, int selectionStart,
int selectionEnd, int compositionStart, int compositionEnd, boolean showImeIfNeeded,
- boolean isNonImeChange) {
+ boolean replyToRequest) {
try {
TraceEvent.begin("ContentViewCore.updateImeAdapter");
boolean focusedNodeEditable = (textInputType != TextInputType.NONE);
@@ -1924,7 +1924,7 @@ public class ContentViewCore implements AccessibilityStateChangeListener, Displa
mImeAdapter.updateKeyboardVisibility(
textInputType, textInputFlags, textInputMode, showImeIfNeeded);
mImeAdapter.updateState(text, selectionStart, selectionEnd, compositionStart,
- compositionEnd, isNonImeChange);
+ compositionEnd, replyToRequest);
boolean editableToggled = (focusedNodeEditable != isFocusedNodeEditable());
mSelectionPopupController.updateSelectionState(focusedNodeEditable,

Powered by Google App Engine
This is Rietveld 408576698